2
0
mirror of https://github.com/boostorg/build.git synced 2026-02-21 15:02:19 +00:00

Bump Jam version to 3.1.6.

[SVN r18897]
This commit is contained in:
Vladimir Prus
2003-07-01 05:14:46 +00:00
parent 5aace113a2
commit 4b6f3babbb
8 changed files with 14 additions and 8 deletions

View File

@@ -216,7 +216,7 @@ rule Package
}
}
VERSION = boost-jam-3.1.5 ;
VERSION = boost-jam-3.1.6 ;
RELEASE = 1 ;
switch $(OSPLAT)

View File

@@ -1,5 +1,5 @@
Name: boost-jam
Version: 3.1.5
Version: 3.1.6
Summary: Build tool
Release: 1
Source: %{name}-%{version}.tgz

View File

@@ -6,7 +6,7 @@
# Info about what we are building.
NAME = boost-jam ;
VERSION = 3.1.5 ;
VERSION = 3.1.6 ;
RELEASE = 1 ;
# Generate development debug binaries?

View File

@@ -1,3 +1,9 @@
bjam (3.1.6-1) unstable; urgency=low
* New upstream release.
-- Vladimir Prus <ghost@zigzag.lvk.cs.msu.su> Tue, 1 Jul 2003 09:12:18 +0400
bjam (3.1.5-1) unstable; urgency=low
* New upstream release.

View File

@@ -136,7 +136,7 @@
compatible with Perforce Jam.</p>
<p>This is version 3.1.5 of BJam and is based on version 2.4 of Jam/MR:</p>
<p>This is version 3.1.6 of BJam and is based on version 2.4 of Jam/MR:</p>
<pre>
/+\
+\ Copyright 1993-2002 Christopher Seiwald and Perforce Software, Inc.

View File

@@ -320,7 +320,7 @@ int main( int argc, char **argv, char **arg_environ )
var_set( "JAM_VERSION",
list_new( list_new( list_new( L0, newstr( "03" ) ), newstr( "01" ) ),
newstr( "05" ) ),
newstr( "06" ) ),
VAR_SET );
/* And JAMUNAME */

View File

@@ -1,5 +1,5 @@
/* Keep JAMVERSYM in sync with VERSION. */
/* It can be accessed as $(JAMVERSION) in the Jamfile. */
#define VERSION "3.1.5"
#define VERSION "3.1.6"
#define JAMVERSYM "JAMVERSION=3.1"

View File

@@ -8,9 +8,9 @@
# First of all, check the jam version
if $(JAM_VERSION:J="") < 030105
if $(JAM_VERSION:J="") < 030106
{
ECHO "error: Boost.Jam version 3.1.5 or later required" ;
ECHO "error: Boost.Jam version 3.1.6 or later required" ;
EXIT ;
}