Skip to content

Commit 4d5a5e9

Browse files
authored
Merge pull request #77 from racket/racket-8.13
build: add 8.13
2 parents 7ea3690 + 67406d9 commit 4d5a5e9

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
# racket-docker
22

3-
Docker images for various Racket versions available on DockerHub as [`racket/racket:<version>`](https://hub.docker.com/r/racket/racket/). For example, to run a Racket 8.12 REPL:
3+
Docker images for various Racket versions available on DockerHub as [`racket/racket:<version>`](https://hub.docker.com/r/racket/racket/). For example, to run a Racket 8.13 REPL:
44

55
```
6-
$ docker run -it racket/racket:8.12-full
6+
$ docker run -it racket/racket:8.13-full
77
```
88

99
#### Normal images
@@ -16,7 +16,7 @@ These images use the `minimal-install` of Racket to avoid pulling in things like
1616
DrRacket or Scribble. This also means many `raco` commands such as `raco make`
1717
will be missing; install the `compiler-lib` package to get most of the standard
1818
`raco` commands. Alternatively, use the "full" images instead such as
19-
`racket/racket:8.12-full`.
19+
`racket/racket:8.13-full`.
2020

2121
Versions: 6.1 and above. Racket CS images are available for 7.4 and above.
2222

build.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@ foreach () {
124124
done;
125125
};
126126

127-
declare -r LATEST_RACKET_VERSION="8.12";
127+
declare -r LATEST_RACKET_VERSION="8.13";
128128

129129
tag_latest () {
130130
declare -r repository="${1}";
@@ -133,7 +133,7 @@ tag_latest () {
133133

134134
# The 8x series is split into two to avoid running into storage limits in CI.
135135
build_8x_2 () {
136-
foreach build_8x "8.10" "8.11" "8.11.1" "8.12";
136+
foreach build_8x "8.10" "8.11" "8.11.1" "8.12" "8.13";
137137
tag_latest "${DOCKER_REPOSITORY}";
138138
tag_latest "${SECONDARY_DOCKER_REPOSITORY}";
139139
}

0 commit comments

Comments
 (0)