From owner-svn-src-stable@freebsd.org Thu Jan 14 14:18:14 2021 Return-Path: Delivered-To: svn-src-stable@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id 96B004E402E; Thu, 14 Jan 2021 14:18:14 +0000 (UTC) (envelope-from kevans@freebsd.org) Received: from smtp.freebsd.org (smtp.freebsd.org [96.47.72.83]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256 client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "smtp.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4DGmcj4sNkz3wSW; Thu, 14 Jan 2021 14:18:13 +0000 (UTC) (envelope-from kevans@freebsd.org) Received: from mail-qk1-f170.google.com (mail-qk1-f170.google.com [209.85.222.170]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "GTS CA 1O1" (verified OK)) (Authenticated sender: kevans) by smtp.freebsd.org (Postfix) with ESMTPSA id 7C7273F13; Thu, 14 Jan 2021 14:18:12 +0000 (UTC) (envelope-from kevans@freebsd.org) Received: by mail-qk1-f170.google.com with SMTP id c7so7982717qke.1; Thu, 14 Jan 2021 06:18:12 -0800 (PST) X-Gm-Message-State: AOAM530DcRpxwVEP5ConkurLiU/4M8y1ub5FXPCV8R9Tn2bYYoK1tVq6 AYSA66aWTHLKkpd5jYbkrvSXBxplEi8yGUf0f74= X-Google-Smtp-Source: ABdhPJxNgb2TKxzFQr4JvfX/6i0JVxE2VtLBRkEvwWBloRH/6EVDS30YtK3DYPENRPe93ItZKVBMOG0wkSJKxUzrKqs= X-Received: by 2002:a05:620a:14a:: with SMTP id e10mr7060681qkn.103.1610633891880; Thu, 14 Jan 2021 06:18:11 -0800 (PST) MIME-Version: 1.0 References: <202009110004.08B04NNO072373@repo.freebsd.org> In-Reply-To: <202009110004.08B04NNO072373@repo.freebsd.org> From: Kyle Evans Date: Thu, 14 Jan 2021 08:17:59 -0600 X-Gmail-Original-Message-ID: Message-ID: Subject: Re: svn commit: r365619 - in stable/12/sys: conf sys To: Glen Barber Cc: src-committers , svn-src-all , svn-src-stable@freebsd.org, svn-src-stable-12@freebsd.org, FreeBSD Release Engineering Team Content-Type: text/plain; charset="UTF-8" X-BeenThere: svn-src-stable@freebsd.org X-Mailman-Version: 2.1.34 Precedence: list List-Id: SVN commit messages for all the -stable branches of the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 14 Jan 2021 14:18:14 -0000 On Thu, Sep 10, 2020 at 7:04 PM Glen Barber wrote: > > Author: gjb > Date: Fri Sep 11 00:04:23 2020 > New Revision: 365619 > URL: https://svnweb.freebsd.org/changeset/base/365619 > > Log: > Rename stable/12 to -STABLE, and bump __FreeBSD_version after > releng/12.2 had been created. > I had wondered this before, and now I wonder again after a recent pkgbase discussion about versioning schemes. Why do we rename stable to -PRERELEASE at all? It's decidedly a (minor) downgrade to try to go from -PRERELEASE to -RELEASE since anyone that manages to get a -PRERELEASE build is still along -STABLE. Thanks, Kyle Evans > Modified: > stable/12/sys/conf/newvers.sh > stable/12/sys/sys/param.h > > Modified: stable/12/sys/conf/newvers.sh > ============================================================================== > --- stable/12/sys/conf/newvers.sh Thu Sep 10 23:56:59 2020 (r365618) > +++ stable/12/sys/conf/newvers.sh Fri Sep 11 00:04:23 2020 (r365619) > @@ -49,7 +49,7 @@ > > TYPE="FreeBSD" > REVISION="12.2" > -BRANCH=${BRANCH_OVERRIDE:-PRERELEASE} > +BRANCH=${BRANCH_OVERRIDE:-STABLE} > RELEASE="${REVISION}-${BRANCH}" > VERSION="${TYPE} ${RELEASE}" > > > Modified: stable/12/sys/sys/param.h > ============================================================================== > --- stable/12/sys/sys/param.h Thu Sep 10 23:56:59 2020 (r365618) > +++ stable/12/sys/sys/param.h Fri Sep 11 00:04:23 2020 (r365619) > @@ -60,7 +60,7 @@ > * in the range 5 to 9. > */ > #undef __FreeBSD_version > -#define __FreeBSD_version 1201526 /* Master, propagated to newvers */ > +#define __FreeBSD_version 1202500 /* Master, propagated to newvers */ > > /* > * __FreeBSD_kernel__ indicates that this system uses the kernel of FreeBSD,