From: stevenknight Date: Fri, 7 Nov 2003 18:16:06 +0000 (+0000) Subject: Initialize the 0.94 branch for release. X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=0e2634855b43174e66a92c044f1099ecde25f8cf;p=scons.git Initialize the 0.94 branch for release. git-svn-id: http://scons.tigris.org/svn/scons/trunk@839 fdb21ef1-2011-0410-befe-b5e4ea1792b1 --- diff --git a/README b/README index 6c921f19..a19a2470 100644 --- a/README +++ b/README @@ -66,12 +66,12 @@ In this case, your options are: -- (Optional.) Install from a pre-packaged SCons package that does not require distutils: - Red Hat Linux scons-0.93-1.noarch.rpm + Red Hat Linux scons-0.94-1.noarch.rpm - Debian GNU/Linux scons_0.93-1_all.deb + Debian GNU/Linux scons_0.94-1_all.deb (or use apt-get) - Windows scons-0.93.win32.exe + Windows scons-0.94.win32.exe -- (Recommended.) Download the latest distutils package from the following URL: @@ -218,18 +218,18 @@ more typing: Depending on the utilities installed on your system, any or all of the following packages will be built: - build/dist/scons-0.93-1.noarch.rpm - build/dist/scons-0.93-1.src.rpm - build/dist/scons-0.93.linux-i686.tar.gz - build/dist/scons-0.93.tar.gz - build/dist/scons-0.93.win32.exe - build/dist/scons-0.93.zip - build/dist/scons-doc-0.93.tar.gz - build/dist/scons-local-0.93.tar.gz - build/dist/scons-local-0.93.zip - build/dist/scons-src-0.93.tar.gz - build/dist/scons-src-0.93.zip - build/dist/scons_0.93-1_all.deb + build/dist/scons-0.94-1.noarch.rpm + build/dist/scons-0.94-1.src.rpm + build/dist/scons-0.94.linux-i686.tar.gz + build/dist/scons-0.94.tar.gz + build/dist/scons-0.94.win32.exe + build/dist/scons-0.94.zip + build/dist/scons-doc-0.94.tar.gz + build/dist/scons-local-0.94.tar.gz + build/dist/scons-local-0.94.zip + build/dist/scons-src-0.94.tar.gz + build/dist/scons-src-0.94.zip + build/dist/scons_0.94-1_all.deb The SConstruct file is supposed to be smart enough to avoid trying to build packages for which you don't have the proper utilities installed. diff --git a/SConstruct b/SConstruct index ec035788..61b9b77a 100644 --- a/SConstruct +++ b/SConstruct @@ -39,7 +39,7 @@ import sys import time project = 'scons' -default_version = '0.93' +default_version = '0.94' copyright = "Copyright (c) %s Steven Knight" % copyright_years Default('.') diff --git a/debian/changelog b/debian/changelog index 449c177c..1dc6fc68 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,10 @@ +scons (0.94-1) unstable; urgency=low + + * Fifth beta release. + + -- Steven Knight Fri, 07 Nov 2003 05:29:48 -0600 + + scons (0.93-1) unstable; urgency=low * Fourth beta release. diff --git a/rpm/scons.spec.in b/rpm/scons.spec.in index 2160041a..d2ab1572 100644 --- a/rpm/scons.spec.in +++ b/rpm/scons.spec.in @@ -1,5 +1,5 @@ %define name scons -%define version 0.93 +%define version 0.94 %define release 1 Summary: an Open Source software construction tool diff --git a/src/CHANGES.txt b/src/CHANGES.txt index 8629589f..4021c834 100644 --- a/src/CHANGES.txt +++ b/src/CHANGES.txt @@ -8,7 +8,7 @@ -RELEASE X.XX - XXX, XX XXX XXXX XX:XX:XX -XXXX +RELEASE 0.94 - Fri, 07 Nov 2003 05:29:48 -0600 From Hartmut Goebel: diff --git a/src/RELEASE.txt b/src/RELEASE.txt index 76fa1dc8..0651dcad 100644 --- a/src/RELEASE.txt +++ b/src/RELEASE.txt @@ -20,13 +20,11 @@ more effectively, please sign up for the scons-users mailing list at: -RELEASE X.XX - XXX, XX XXX XXXX XX:XX:XX -XXXX +RELEASE 0.94 - Fri, 07 Nov 2003 05:29:48 -0600 This is the fifth beta release of SCons. Please consult the CHANGES.txt file for a list of specific changes since last release. - Please note the following important changes since release 0.93: - Please note the following important changes since release 0.92: - Construction variables are now expanded anywhere within a @@ -156,8 +154,10 @@ RELEASE X.XX - XXX, XX XXX XXXX XX:XX:XX -XXXX for directories outside the top-level SConstruct file. - The Jar() Builder will, on its second or subsequent invocation, - package up the .sconsign files that SCons uses to track - signatures. + package up the .sconsign files that SCons uses to track signatures. + You can work around this by using the SConsignFile() function + to collect all of the .sconsign information into a single file + outside of the directory being packaged by Jar(). - SCons does not currently have a way to detect that an intermediate file has been corrupted from outside and should be rebuilt. diff --git a/src/setupTests.py b/src/setupTests.py index 1397561d..9f87a828 100644 --- a/src/setupTests.py +++ b/src/setupTests.py @@ -52,7 +52,7 @@ except KeyError: # version = os.environ['SCONS_VERSION'] #except KeyError: # version = '__VERSION__' -version = '0.93' +version = '0.94' scons_version = 'scons-%s' % version