Newsgroups: php.internals Path: news.php.net Xref: news.php.net php.internals:65143 Return-Path: Mailing-List: contact internals-help@lists.php.net; run by ezmlm Delivered-To: mailing list internals@lists.php.net Received: (qmail 99622 invoked from network); 24 Jan 2013 08:29:54 -0000 Received: from unknown (HELO lists.php.net) (127.0.0.1) by localhost with SMTP; 24 Jan 2013 08:29:54 -0000 Authentication-Results: pb1.pair.com header.from=kris.craig@gmail.com; sender-id=pass Authentication-Results: pb1.pair.com smtp.mail=kris.craig@gmail.com; spf=pass; sender-id=pass Received-SPF: pass (pb1.pair.com: domain gmail.com designates 209.85.214.177 as permitted sender) X-PHP-List-Original-Sender: kris.craig@gmail.com X-Host-Fingerprint: 209.85.214.177 mail-ob0-f177.google.com Received: from [209.85.214.177] ([209.85.214.177:57322] helo=mail-ob0-f177.google.com) by pb1.pair.com (ecelerity 2.1.1.9-wez r(12769M)) with ESMTP id 5B/F2-65404-201F0015 for ; Thu, 24 Jan 2013 03:29:54 -0500 Received: by mail-ob0-f177.google.com with SMTP id wc20so8635020obb.36 for ; Thu, 24 Jan 2013 00:29:51 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:x-received:in-reply-to:references:date:message-id :subject:from:to:cc:content-type; bh=KdqnT3f+586tLedmkS0MLqbIX0MZk9IhyPdMJQfCICQ=; b=eZfWOZolMplS5Gdn9bufFa4chFs5+7oHalD8CVqJ6armufCi32wCcptXqxEpHLcyPU U2930Eq/qiyNgmv7rtV7owNOurKbNTHBu6AEHM76tKRw+p49J7y2wxK/knnF5Qo+kpOb hoj6mP3005xBzd5/7cmlKWTD8JU7gooOS0SHU1sfMO+tpucb66PRQ+cNF3ZEJg2alYmK NtMxQS5d3TlqWKfmbMQgX81Cu/EEZ+xCrcaITahnRgva3Onz8nFot1Mc+24zJOMn/MEM cgepXYJcvB8AVe/4+SwvpP5kMzXtMwM7FFrnoX1WJwbhc7hq0BjKAOiaLpi/st9/CFAs 9Dlg== MIME-Version: 1.0 X-Received: by 10.182.113.101 with SMTP id ix5mr814803obb.73.1359016191776; Thu, 24 Jan 2013 00:29:51 -0800 (PST) Received: by 10.182.132.45 with HTTP; Thu, 24 Jan 2013 00:29:51 -0800 (PST) In-Reply-To: <5100CD00.3030608@sugarcrm.com> References: <50FDC4D8.6030105@oracle.com> <51001FE2.7090109@anderiasch.de> <51008FE0.7010908@oracle.com> <5100CD00.3030608@sugarcrm.com> Date: Thu, 24 Jan 2013 00:29:51 -0800 Message-ID: To: Stas Malyshev Cc: Pierre Joye , Christopher Jones , PHP internals , Florian Anderiasch Content-Type: multipart/alternative; boundary=f46d0447f3dc5ad81604d4049d17 Subject: Re: [PHP-DEV] Re: [RFC][vote] 5.3 EOL From: kris.craig@gmail.com (Kris Craig) --f46d0447f3dc5ad81604d4049d17 Content-Type: text/plain; charset=ISO-8859-1 On Wed, Jan 23, 2013 at 9:56 PM, Stas Malyshev wrote: > Hi! > > > I asked many native speakers and all understood it as "when 5.5.0 stable > > release will be announced". > > I didn't even think it may mean anything else until I've read this > thread. I don't think any significant number of voters understood it > this way, it's sound kind of weird - why would we want to keep releasing > 5.3 a year after we stopped releasing 5.5? > -- > Stanislav Malyshev, Software Architect > SugarCRM: http://www.sugarcrm.com/ > (408)454-6900 ext. 227 Long answer: The terms "final" and "terminal" tend to be very loosely defined in the general sense. You have to look at it in the context of a given project to see how they're using each. Context isn't unique to English, of course. This particular question seems to break down into two parts: 1. In the case of PHP core, "final" has always (as far as I'm aware, at least) referred to the production release immediately following the release candidates. It does not in any way imply that it will be the last (or "terminal") release for its parent increment. For example, "5.3.3 final" means that it's the production release of 5.3.3; it does not mean that it's the last increment of 5.3. 2. When a new minor increment is released (i.e. [major].[minor].[build]), we tend to leave off the ".0" at the end on this project. Therefore, when somebody refers to "5.5 final", what they're really saying is "5.5.0 final", which refers to the production release of 5.5.0. This doesn't cause any confusion because we're consistent on this; i.e. if we were doing something like "5.2" followed immediately by "5.3.0" then "5.3.1", that would pose a problem. But since "[major].[minor]" on this project always refers to "[major].[minor].0", it's not an issue. In other words, what we're saying is it's the final (i.e. production/post-RC) release of 5.5.0, not 5.5. Our production releases are tethered to the build increment, not minor. As I understand it, "final" refers to an increment corresponding to an actual release while "terminal" refers to an increment that merely serves as the parent of releases but is not a release in and of itself. Make sense? Therefore, if we say "5.5 final", we're referring to the production release of 5.5.0. If we say "5.5 terminal", we're referring to the last build increment release of 5.5 (for example, if 5.5.12 was the last build of 5.5, then "5.5 terminal" would refer to it while "5.5 final" would still refer to 5.5.0). Short answer: The terminology context is well enough established here that nobody should have been confused as to this RFC's intent. So long as the RFC's wording conforms to these known standards, which I believe this one does, then it's the responsibility of the person voting on it to make sure they know what they mean before casting their vote. --Kris --f46d0447f3dc5ad81604d4049d17--