Skip to content

Commit aeeaf29

Browse files
committed
Chez Scheme Version 10.2.0-pre-release.1
1 parent ae19cf9 commit aeeaf29

19 files changed

+46
-46
lines changed

BUILDING

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Building Chez Scheme Version 10.1.0
1+
Building Chez Scheme Version 10.2.0
22
Copyright 1984-2024 Cisco Systems, Inc.
33

44
Licensed under the Apache License, Version 2.0 (the "License");

NOTICE

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Chez Scheme Version 10.1.0
1+
Chez Scheme Version 10.2.0
22
Copyright 1984-2024 Cisco Systems, Inc.
33

44
This product includes code developed by Cisco Systems, Inc.

boot/pb/equates.h

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/* equates.h for Chez Scheme Version 10.1.0 */
1+
/* equates.h for Chez Scheme Version 10.2.0-pre-release.1 */
22

33
/* Do not edit this file. It is automatically generated and */
44
/* specifically tailored to the version of Chez Scheme named */
@@ -1015,7 +1015,7 @@ typedef uint64_t U64;
10151015
#define rtd_sealed 0x4
10161016
#define sbwp (ptr)0x4E
10171017
#define scaled_shot_1_shot_flag -0x8
1018-
#define scheme_version 0xA010000
1018+
#define scheme_version 0xA020001
10191019
#define seginfo_generation_disp 0x1
10201020
#define seginfo_list_bits_disp 0x8
10211021
#define seginfo_space_disp 0x0

boot/pb/petite.boot

44 Bytes
Binary file not shown.

boot/pb/scheme.boot

-2 Bytes
Binary file not shown.

boot/pb/scheme.h

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/* scheme.h for Chez Scheme Version 10.1.0 (pb) */
1+
/* scheme.h for Chez Scheme Version 10.2.0-pre-release.1 (pb) */
22

33
/* Do not edit this file. It is automatically generated and */
44
/* specifically tailored to the version of Chez Scheme named */
@@ -40,7 +40,7 @@
4040
#endif
4141

4242
/* Chez Scheme Version and machine type */
43-
#define VERSION "10.1.0"
43+
#define VERSION "10.2.0-pre-release.1"
4444
#define MACHINE_TYPE "pb"
4545

4646
/* Integer typedefs */

c/scheme.rc

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
#include "winver.h"
22

33
VS_VERSION_INFO VERSIONINFO
4-
FILEVERSION 10,1,0,0
5-
PRODUCTVERSION 10,1,0,0
4+
FILEVERSION 10,2,0,0
5+
PRODUCTVERSION 10,2,0,0
66
FILEFLAGSMASK 0x3fL
77
FILEFLAGS 0x0L
88
FILEOS VOS__WINDOWS32
@@ -12,13 +12,13 @@ VS_VERSION_INFO VERSIONINFO
1212
BLOCK "StringFileInfo" {
1313
BLOCK "04090000" {
1414
VALUE "CompanyName", "Cisco Systems, Inc."
15-
VALUE "FileDescription", "Chez Scheme Version 10.1.0"
16-
VALUE "FileVersion", "10.1.0"
15+
VALUE "FileDescription", "Chez Scheme Version 10.2.0"
16+
VALUE "FileVersion", "10.2.0"
1717
VALUE "InternalName", "scheme.exe"
1818
VALUE "LegalCopyright", "Copyright 1984-2024 Cisco Systems, Inc. Licensed under the Apache License, Version 2.0."
1919
VALUE "OriginalFilename", "scheme.exe"
2020
VALUE "ProductName", "Chez Scheme"
21-
VALUE "ProductVersion", "10.1.0"
21+
VALUE "ProductVersion", "10.2.0"
2222
}
2323
}
2424
BLOCK "VarFileInfo" {

configure

+2-2
Original file line numberDiff line numberDiff line change
@@ -653,11 +653,11 @@ if [ "$installdoc" = "" ] ; then
653653
fi
654654

655655
if [ "$installcsug" = "" ] ; then
656-
installcsug=$installdoc/csug10.1.0
656+
installcsug=$installdoc/csug10.2.0
657657
fi
658658

659659
if [ "$installreleasenotes" = "" ] ; then
660-
installreleasenotes=$installdoc/csv10.1.0
660+
installreleasenotes=$installdoc/csv10.2.0
661661
fi
662662

663663
if [ "$help" = "yes" ]; then

maketarball

+3-3
Original file line numberDiff line numberDiff line change
@@ -25,14 +25,14 @@ function cleanup() { rm -rf "$tmpdir"; }
2525

2626
trap cleanup EXIT
2727

28-
git archive --format=tar --prefix=csv10.1.0/ HEAD | (cd "$tmpdir"; tar -xf -)
28+
git archive --format=tar --prefix=csv10.2.0/ HEAD | (cd "$tmpdir"; tar -xf -)
2929
git submodule update --init --recursive
3030
git submodule --quiet foreach --recursive \
31-
"git archive --format=tar --prefix=\"csv10.1.0/\$path/\" HEAD | (cd \"$tmpdir\"; tar -xf -)"
31+
"git archive --format=tar --prefix=\"csv10.2.0/\$path/\" HEAD | (cd \"$tmpdir\"; tar -xf -)"
3232

3333
if [[ "$(uname -s)" == "Darwin" ]]; then
3434
mac="--no-mac-metadata"
3535
else
3636
mac=""
3737
fi
38-
(cd "$tmpdir"; tar -c -z $mac -f "$srcdir/csv10.1.0.tar.gz" csv10.1.0)
38+
(cd "$tmpdir"; tar -c -z $mac -f "$srcdir/csv10.2.0.tar.gz" csv10.2.0)

pkg/Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
# limitations under the License.
1515

1616
m := $(shell find ../bin/* -type d | xargs basename)
17-
version = 10.1.0
17+
version = 10.2.0
1818
release = 1
1919

2020
DOTUSER = $(shell ls -ld . | sed -e 's/[^ ]* *[^ ]* *\([^ ]*\).*/\1/')

release_notes/release_notes.stex

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
\documentclass{releasenotes}
22

3-
\thisversion{Version 10.1.0}
3+
\thisversion{Version 10.2.0}
44
\thatversion{Version 8.4}
55
\pubmonth{November}
66
\pubyear{2024}

rpm/Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
# See the License for the specific language governing permissions and
1414
# limitations under the License.
1515

16-
version = 10.1.0
16+
version = 10.2.0
1717
release = 1
1818
m := $(shell find ../bin/* -type d | xargs basename)
1919
arch := $(shell if test "$(m)" == "i3le" ; then echo i686 ; elif test "$(m)" == "a6le" ; then echo x86_64 ; else echo UNKNOWN ; fi)

s/cmacros.ss

+1-1
Original file line numberDiff line numberDiff line change
@@ -357,7 +357,7 @@
357357
;; ---------------------------------------------------------------------
358358
;; Version and machine types:
359359

360-
(define-constant scheme-version #x0a010000)
360+
(define-constant scheme-version #x0a020001)
361361

362362
(define-syntax define-machine-types
363363
(lambda (x)

scheme.1.in

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
.if t .ds c caf\o'\'e'
44
.if n .ds c cafe
55
.ds ]W
6-
.TH SCHEME 1 "Chez Scheme Version 10.1.0 November 2024"
6+
.TH SCHEME 1 "Chez Scheme Version 10.2.0 November 2024"
77
.SH NAME
88
{InstallSchemeName} - Chez Scheme
99
.br

wininstall/Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
VERSION := 10.1.0
1+
VERSION := 10.2.0
22
WIXEXTENSIONS := -ext WixUIExtension -ext WixBalExtension
33
export MSYS_NO_PATHCONV=1
44

wininstall/a6nt.wxs

+6-6
Original file line numberDiff line numberDiff line change
@@ -4,16 +4,16 @@
44
<DirectoryRef Id="D_bin">
55
<Directory Id="D_bin_a6nt" Name="a6nt">
66
<Component Id="cmp9E121291956F53F264990A9F6E93E67D" Guid="*">
7-
<File Id="fil174DC3B31231BE75291782CBF71B1ECB" KeyPath="yes" Source="..\a6nt\bin\a6nt\csv1010.dll" />
7+
<File Id="fil174DC3B31231BE75291782CBF71B1ECB" KeyPath="yes" Source="..\a6nt\bin\a6nt\csv1020.dll" />
88
</Component>
99
<Component Id="cmpDB181AE3BD838D4F431CAE12DB40B70A" Guid="*">
10-
<File Id="fil53D3BD37CECBBF28D1DB95A8B750DBDC" KeyPath="yes" Source="..\a6nt\bin\a6nt\csv1010.exp" />
10+
<File Id="fil53D3BD37CECBBF28D1DB95A8B750DBDC" KeyPath="yes" Source="..\a6nt\bin\a6nt\csv1020.exp" />
1111
</Component>
1212
<Component Id="cmp0B0A70880E3C505B199705D415235AC7" Guid="*">
13-
<File Id="fil69E98A18AB5AD3061617C9E68F536773" KeyPath="yes" Source="..\a6nt\bin\a6nt\csv1010.lib" />
13+
<File Id="fil69E98A18AB5AD3061617C9E68F536773" KeyPath="yes" Source="..\a6nt\bin\a6nt\csv1020.lib" />
1414
</Component>
1515
<Component Id="cmp41C1093548579E6BE087DD4BE735B7C5" Guid="*">
16-
<File Id="fil11683117A53DD772D9B6F0C11BE06C7C" KeyPath="yes" Source="..\a6nt\bin\a6nt\csv1010.pdb" />
16+
<File Id="fil11683117A53DD772D9B6F0C11BE06C7C" KeyPath="yes" Source="..\a6nt\bin\a6nt\csv1020.pdb" />
1717
</Component>
1818
<Component Id="cmpD50999EDF5C2480D6F6F6A04E6B127F3" Guid="*">
1919
<File Id="filE439E2DE55CFE1366273AF3E232D4519" KeyPath="yes" Source="..\a6nt\bin\a6nt\petite.exe" />
@@ -40,10 +40,10 @@
4040
<DirectoryRef Id="D_boot">
4141
<Directory Id="D_boot_a6nt" Name="a6nt">
4242
<Component Id="cmpB8AFC5E7298C4FB423F21E474D718248" Guid="*">
43-
<File Id="filAA3DCFC2962A0A679D26BAEF2EE45D18" KeyPath="yes" Source="..\a6nt\boot\a6nt\csv1010md.lib" />
43+
<File Id="filAA3DCFC2962A0A679D26BAEF2EE45D18" KeyPath="yes" Source="..\a6nt\boot\a6nt\csv1020md.lib" />
4444
</Component>
4545
<Component Id="cmp41A0F324C636C03565EFAB5DC1197958" Guid="*">
46-
<File Id="fil0052F236986BD25DFE0D0DE76854483B" KeyPath="yes" Source="..\a6nt\boot\a6nt\csv1010mt.lib" />
46+
<File Id="fil0052F236986BD25DFE0D0DE76854483B" KeyPath="yes" Source="..\a6nt\boot\a6nt\csv1020mt.lib" />
4747
</Component>
4848
<Component Id="cmp08025CB77BA01465D21171D27231AE6A" Guid="*">
4949
<File Id="fil7FF609B8D0F6C6E984910D4458F7B76B" KeyPath="yes" Source="..\a6nt\boot\a6nt\mainmd.obj" />

wininstall/i3nt.wxs

+6-6
Original file line numberDiff line numberDiff line change
@@ -4,16 +4,16 @@
44
<DirectoryRef Id="D_bin">
55
<Directory Id="D_bin_i3nt" Name="i3nt">
66
<Component Id="cmp3EAD5F342D86023E323C2F3E96A596B9" Guid="*">
7-
<File Id="filF35C82CDA44DE51CEFA9FF8CA1B38AAA" KeyPath="yes" Source="..\i3nt\bin\i3nt\csv1010.dll" />
7+
<File Id="filF35C82CDA44DE51CEFA9FF8CA1B38AAA" KeyPath="yes" Source="..\i3nt\bin\i3nt\csv1020.dll" />
88
</Component>
99
<Component Id="cmpF2410A7AF5FB7C10A33DA57476B0E56B" Guid="*">
10-
<File Id="filFE4E60D4DD4AEF0DDA574E6EF117FEC0" KeyPath="yes" Source="..\i3nt\bin\i3nt\csv1010.exp" />
10+
<File Id="filFE4E60D4DD4AEF0DDA574E6EF117FEC0" KeyPath="yes" Source="..\i3nt\bin\i3nt\csv1020.exp" />
1111
</Component>
1212
<Component Id="cmp905F254ECBC3BCB861BBBF60B0F34D73" Guid="*">
13-
<File Id="fil811C8A53860477F59CD4D11BF7C36A5E" KeyPath="yes" Source="..\i3nt\bin\i3nt\csv1010.lib" />
13+
<File Id="fil811C8A53860477F59CD4D11BF7C36A5E" KeyPath="yes" Source="..\i3nt\bin\i3nt\csv1020.lib" />
1414
</Component>
1515
<Component Id="cmp43EE1BA94E7D15B5F9721D32B41CDFF1" Guid="*">
16-
<File Id="fil3475AECC40E6C77A1E5A74C81205D246" KeyPath="yes" Source="..\i3nt\bin\i3nt\csv1010.pdb" />
16+
<File Id="fil3475AECC40E6C77A1E5A74C81205D246" KeyPath="yes" Source="..\i3nt\bin\i3nt\csv1020.pdb" />
1717
</Component>
1818
<Component Id="cmp2660425B08191D07FD2B8E4D12C25CAF" Guid="*">
1919
<File Id="fil6C14AF587FDAABD1440BADC640EEF64E" KeyPath="yes" Source="..\i3nt\bin\i3nt\petite.exe" />
@@ -40,10 +40,10 @@
4040
<DirectoryRef Id="D_boot">
4141
<Directory Id="D_boot_i3nt" Name="i3nt">
4242
<Component Id="cmp47E339F22F1D268C3D889C89DC04B1EC" Guid="*">
43-
<File Id="filFAE795432021A108F72A5A1763549848" KeyPath="yes" Source="..\i3nt\boot\i3nt\csv1010md.lib" />
43+
<File Id="filFAE795432021A108F72A5A1763549848" KeyPath="yes" Source="..\i3nt\boot\i3nt\csv1020md.lib" />
4444
</Component>
4545
<Component Id="cmp97E86E3E78EC5C1E35333413F9D239A9" Guid="*">
46-
<File Id="filC2A38DD4D83F793279D6D10E8D553145" KeyPath="yes" Source="..\i3nt\boot\i3nt\csv1010mt.lib" />
46+
<File Id="filC2A38DD4D83F793279D6D10E8D553145" KeyPath="yes" Source="..\i3nt\boot\i3nt\csv1020mt.lib" />
4747
</Component>
4848
<Component Id="cmp4EC08D9AF0D6DADE3077A7EB099476B4" Guid="*">
4949
<File Id="fil47E4EBA05B181E80FAF43A5B84DCC1D6" KeyPath="yes" Source="..\i3nt\boot\i3nt\mainmd.obj" />

wininstall/ta6nt.wxs

+6-6
Original file line numberDiff line numberDiff line change
@@ -4,16 +4,16 @@
44
<DirectoryRef Id="D_bin">
55
<Directory Id="D_bin_ta6nt" Name="ta6nt">
66
<Component Id="cmpA67EF6318D00B4209BFCD0BFDCDF781C" Guid="*">
7-
<File Id="fil6AE7892DB37FF6D2C21B5EC064C90DE5" KeyPath="yes" Source="..\ta6nt\bin\ta6nt\csv1010.dll" />
7+
<File Id="fil6AE7892DB37FF6D2C21B5EC064C90DE5" KeyPath="yes" Source="..\ta6nt\bin\ta6nt\csv1020.dll" />
88
</Component>
99
<Component Id="cmpF41FF9DE554F79FB6FBD85E5B80A5221" Guid="*">
10-
<File Id="fil9157F8FB18F1F75BE50A64A9C227BF61" KeyPath="yes" Source="..\ta6nt\bin\ta6nt\csv1010.exp" />
10+
<File Id="fil9157F8FB18F1F75BE50A64A9C227BF61" KeyPath="yes" Source="..\ta6nt\bin\ta6nt\csv1020.exp" />
1111
</Component>
1212
<Component Id="cmp372F759C97C3C69E4C336B81D807E4F5" Guid="*">
13-
<File Id="fil602A8BBB83416294672AA22507E6452A" KeyPath="yes" Source="..\ta6nt\bin\ta6nt\csv1010.lib" />
13+
<File Id="fil602A8BBB83416294672AA22507E6452A" KeyPath="yes" Source="..\ta6nt\bin\ta6nt\csv1020.lib" />
1414
</Component>
1515
<Component Id="cmp009F56824D2716FAAC978FE17A4D947D" Guid="*">
16-
<File Id="filDD0E7D06D27FC4C00388CB48E4B2818C" KeyPath="yes" Source="..\ta6nt\bin\ta6nt\csv1010.pdb" />
16+
<File Id="filDD0E7D06D27FC4C00388CB48E4B2818C" KeyPath="yes" Source="..\ta6nt\bin\ta6nt\csv1020.pdb" />
1717
</Component>
1818
<Component Id="cmp50972D99EC9DDA63E4BC6E29DAA592D0" Guid="*">
1919
<File Id="fil8A260A0B8935F8F9011AA2EDB9147BDE" KeyPath="yes" Source="..\ta6nt\bin\ta6nt\petite.exe" />
@@ -40,10 +40,10 @@
4040
<DirectoryRef Id="D_boot">
4141
<Directory Id="D_boot_ta6nt" Name="ta6nt">
4242
<Component Id="cmpCBDB945622604667783C3C57A0427DF5" Guid="*">
43-
<File Id="filD3E4E45F8404EE812C5DAFCBEB2502AA" KeyPath="yes" Source="..\ta6nt\boot\ta6nt\csv1010md.lib" />
43+
<File Id="filD3E4E45F8404EE812C5DAFCBEB2502AA" KeyPath="yes" Source="..\ta6nt\boot\ta6nt\csv1020md.lib" />
4444
</Component>
4545
<Component Id="cmpD7880184C113065E511275EFD531D589" Guid="*">
46-
<File Id="filDC2D7E1DB036BAE5B7FFA7FE14F3CD69" KeyPath="yes" Source="..\ta6nt\boot\ta6nt\csv1010mt.lib" />
46+
<File Id="filDC2D7E1DB036BAE5B7FFA7FE14F3CD69" KeyPath="yes" Source="..\ta6nt\boot\ta6nt\csv1020mt.lib" />
4747
</Component>
4848
<Component Id="cmp5211817ED85951CDAF2FD5E2419BD211" Guid="*">
4949
<File Id="fil21839A8D4062A72DEAB3156D77EEE82A" KeyPath="yes" Source="..\ta6nt\boot\ta6nt\mainmd.obj" />

wininstall/ti3nt.wxs

+6-6
Original file line numberDiff line numberDiff line change
@@ -4,16 +4,16 @@
44
<DirectoryRef Id="D_bin">
55
<Directory Id="D_bin_ti3nt" Name="ti3nt">
66
<Component Id="cmp3E51840FF941B7410025EFB2215EAB58" Guid="*">
7-
<File Id="fil6B96E8682034EC96C7842C5024FDF620" KeyPath="yes" Source="..\ti3nt\bin\ti3nt\csv1010.dll" />
7+
<File Id="fil6B96E8682034EC96C7842C5024FDF620" KeyPath="yes" Source="..\ti3nt\bin\ti3nt\csv1020.dll" />
88
</Component>
99
<Component Id="cmp68BA21E76800BFFA057D33973E89D8F4" Guid="*">
10-
<File Id="fil5F505E9200C84F7887C4D12FA9D9D794" KeyPath="yes" Source="..\ti3nt\bin\ti3nt\csv1010.exp" />
10+
<File Id="fil5F505E9200C84F7887C4D12FA9D9D794" KeyPath="yes" Source="..\ti3nt\bin\ti3nt\csv1020.exp" />
1111
</Component>
1212
<Component Id="cmpCA1F1C55C49A3A332E60F8D0D78363C2" Guid="*">
13-
<File Id="filB8607D2BF295249DD6F51070A687E14B" KeyPath="yes" Source="..\ti3nt\bin\ti3nt\csv1010.lib" />
13+
<File Id="filB8607D2BF295249DD6F51070A687E14B" KeyPath="yes" Source="..\ti3nt\bin\ti3nt\csv1020.lib" />
1414
</Component>
1515
<Component Id="cmp01D266C0ECE540BE4BF6E6AE14AFFCBB" Guid="*">
16-
<File Id="filE99735E84B4934FC41AAA6BBF547F1C5" KeyPath="yes" Source="..\ti3nt\bin\ti3nt\csv1010.pdb" />
16+
<File Id="filE99735E84B4934FC41AAA6BBF547F1C5" KeyPath="yes" Source="..\ti3nt\bin\ti3nt\csv1020.pdb" />
1717
</Component>
1818
<Component Id="cmpC00FD9C7415A1D2D22EA38F5259CAAA4" Guid="*">
1919
<File Id="fil80D2F31CB0D3B8F98E3C8CCAF9DA6F29" KeyPath="yes" Source="..\ti3nt\bin\ti3nt\petite.exe" />
@@ -40,10 +40,10 @@
4040
<DirectoryRef Id="D_boot">
4141
<Directory Id="D_boot_ti3nt" Name="ti3nt">
4242
<Component Id="cmp7099C9EB3F487AAFE3A880CED21FA9C2" Guid="*">
43-
<File Id="filD5DA8D84F54BC985AA246BBD3FB15239" KeyPath="yes" Source="..\ti3nt\boot\ti3nt\csv1010md.lib" />
43+
<File Id="filD5DA8D84F54BC985AA246BBD3FB15239" KeyPath="yes" Source="..\ti3nt\boot\ti3nt\csv1020md.lib" />
4444
</Component>
4545
<Component Id="cmpF3038779EA05930E72A29C15DC2D64B2" Guid="*">
46-
<File Id="filFB335FE01A6D5ED27AD2BC179DB8E265" KeyPath="yes" Source="..\ti3nt\boot\ti3nt\csv1010mt.lib" />
46+
<File Id="filFB335FE01A6D5ED27AD2BC179DB8E265" KeyPath="yes" Source="..\ti3nt\boot\ti3nt\csv1020mt.lib" />
4747
</Component>
4848
<Component Id="cmp9DDE0523EFC5EEA983DE3CFA0F493908" Guid="*">
4949
<File Id="fil139F59D34D1A013CCB2AEC11507287AA" KeyPath="yes" Source="..\ti3nt\boot\ti3nt\mainmd.obj" />

0 commit comments

Comments
 (0)