Skip to content

Commit

Permalink
Update version number for the v8.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
jbclements committed Feb 4, 2021
1 parent 688f0ef commit 46bf471
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 12 deletions.
2 changes: 1 addition & 1 deletion .makefile
Original file line number Diff line number Diff line change
Expand Up @@ -338,7 +338,7 @@ RACKET_FOR_BOOTFILES = $(RACKET)
RACKET_FOR_BUILD = $(RACKET)

# This branch name changes each time the pb boot files are updated:
PB_BRANCH == circa-7.9.0.22-2
PB_BRANCH == v8.0
PB_REPO = https://github.com/racket/pb

# Alternative source for Chez Scheme boot files, normally set by
Expand Down
14 changes: 7 additions & 7 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ RACKETCS_SUFFIX =
RACKET =
RACKET_FOR_BOOTFILES = $(RACKET)
RACKET_FOR_BUILD = $(RACKET)
PB_BRANCH = circa-7.9.0.22-2
PB_BRANCH = v8.0
PB_REPO = https://github.com/racket/pb
EXTRA_REPOS_BASE =
CS_CROSS_SUFFIX =
Expand All @@ -57,7 +57,7 @@ PB_DIR = racket/src/ChezScheme/boot/pb
WIN32_BOOT_ARGS = SETUP_BOOT_MODE=--boot WIN32_BUILD_LEVEL=bc PLAIN_RACKET=racket\racketbc
WIN32_SETUP_BOOT = -O "info@compiler/cm" -l- setup $(SETUP_BOOT_MODE) racket/src/setup-go.rkt racket/src/build/compiled ignored racket/src/build/ignored.d
CSBUILD_ARGUMENTS = --pull --racketcs-suffix "$(RACKETCS_SUFFIX)" $(DISABLE_STATIC_LIBS) --boot-mode "$(SETUP_BOOT_MODE)" --extra-repos-base "$(EXTRA_REPOS_BASE)"
SRC_CATALOG = $(DEFAULT_SRC_CATALOG)
SRC_CATALOG = "https://download.racket-lang.org/releases/8.0/catalog/"
DOC_SEARCH =
SERVER = localhost
SERVER_PORT = 9440
Expand Down Expand Up @@ -307,18 +307,18 @@ maybe-fetch-pb-as-is:
echo done
fetch-pb-from:
mkdir -p racket/src/ChezScheme/boot
if [ ! -d racket/src/ChezScheme/boot/pb ] ; then git clone -q -b circa-7.9.0.22-2 $(PB_REPO) racket/src/ChezScheme/boot/pb ; else cd racket/src/ChezScheme/boot/pb && git fetch -q origin circa-7.9.0.22-2:remotes/origin/circa-7.9.0.22-2 ; fi
cd racket/src/ChezScheme/boot/pb && git checkout -q circa-7.9.0.22-2
if [ ! -d racket/src/ChezScheme/boot/pb ] ; then git clone -q -b v8.0 $(PB_REPO) racket/src/ChezScheme/boot/pb ; else cd racket/src/ChezScheme/boot/pb && git fetch -q origin v8.0:remotes/origin/v8.0 ; fi
cd racket/src/ChezScheme/boot/pb && git checkout -q v8.0
pb-fetch:
$(MAKE) fetch-pb EXTRA_REPOS_BASE="$(EXTRA_REPOS_BASE)" PB_REPO="$(PB_REPO)"
pb-build:
cd racket/src/ChezScheme && racket rktboot/main.rkt --machine pb
pb-stage:
cd racket/src/ChezScheme/boot/pb && git branch circa-7.9.0.22-2
cd racket/src/ChezScheme/boot/pb && git checkout circa-7.9.0.22-2
cd racket/src/ChezScheme/boot/pb && git branch v8.0
cd racket/src/ChezScheme/boot/pb && git checkout v8.0
cd racket/src/ChezScheme/boot/pb && git add . && git commit --amend -m "new build"
pb-push:
cd racket/src/ChezScheme/boot/pb && git push -u origin circa-7.9.0.22-2
cd racket/src/ChezScheme/boot/pb && git push -u origin v8.0
win-cs-base:
IF "$(RACKET_FOR_BUILD)" == "" $(MAKE) win-bc-then-cs-base SETUP_BOOT_MODE=--boot WIN32_BUILD_LEVEL=bc PLAIN_RACKET=racket\racketbc DISABLE_STATIC_LIBS="$(DISABLE_STATIC_LIBS)" EXTRA_REPOS_BASE="$(EXTRA_REPOS_BASE)" JOB_OPTIONS="$(JOB_OPTIONS)" PLT_SETUP_OPTIONS="$(PLT_SETUP_OPTIONS)" RACKETBC_SUFFIX="$(RACKETBC_SUFFIX)" RACKETCS_SUFFIX="$(RACKETCS_SUFFIX)"
IF not "$(RACKET_FOR_BUILD)" == "" $(MAKE) win-just-cs-base SETUP_BOOT_MODE=--chain DISABLE_STATIC_LIBS="$(DISABLE_STATIC_LIBS)" EXTRA_REPOS_BASE="$(EXTRA_REPOS_BASE)" JOB_OPTIONS="$(JOB_OPTIONS)" PLT_SETUP_OPTIONS="$(PLT_SETUP_OPTIONS)" RACKETCS_SUFFIX="$(RACKETCS_SUFFIX)" RACKET_FOR_BUILD="$(RACKET_FOR_BUILD)"
Expand Down
2 changes: 1 addition & 1 deletion pkgs/base/info.rkt
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@

;; In the Racket source repo, this version should change only when
;; "racket_version.h" changes:
(define version "7.9.0.900")
(define version "8.0")

(define deps `("racket-lib"
["racket" #:version ,version]))
Expand Down
6 changes: 3 additions & 3 deletions racket/src/version/racket_version.h
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,10 @@
needs to be updated separately.
*/

#define MZSCHEME_VERSION_X 7
#define MZSCHEME_VERSION_Y 9
#define MZSCHEME_VERSION_X 8
#define MZSCHEME_VERSION_Y 0
#define MZSCHEME_VERSION_Z 0
#define MZSCHEME_VERSION_W 900
#define MZSCHEME_VERSION_W 0

/* A level of indirection makes `#` work as needed: */
#define AS_a_STR_HELPER(x) #x
Expand Down

0 comments on commit 46bf471

Please sign in to comment.