Skip to content

Commit 6801a98

Browse files
Update previous Crystal release 1.15.0 (#15339)
1 parent 7b9e2ef commit 6801a98

14 files changed

+24
-25
lines changed

.circleci/config.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ parameters:
1212
previous_crystal_base_url:
1313
description: "Prefix for URLs to Crystal bootstrap compiler"
1414
type: string
15-
default: "https://github.com/crystal-lang/crystal/releases/download/1.14.0/crystal-1.14.0-1"
15+
default: "https://github.com/crystal-lang/crystal/releases/download/1.15.0/crystal-1.15.0-1"
1616

1717
defaults:
1818
environment: &env

.github/workflows/interpreter.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
test-interpreter_spec:
1616
runs-on: ubuntu-24.04
1717
container:
18-
image: crystallang/crystal:1.14.0-build
18+
image: crystallang/crystal:1.15.0-build
1919
name: "Test Interpreter"
2020
steps:
2121
- uses: actions/checkout@v4
@@ -26,7 +26,7 @@ jobs:
2626
build-interpreter:
2727
runs-on: ubuntu-24.04
2828
container:
29-
image: crystallang/crystal:1.14.0-build
29+
image: crystallang/crystal:1.15.0-build
3030
name: Build interpreter
3131
steps:
3232
- uses: actions/checkout@v4
@@ -45,7 +45,7 @@ jobs:
4545
needs: build-interpreter
4646
runs-on: ubuntu-24.04
4747
container:
48-
image: crystallang/crystal:1.14.0-build
48+
image: crystallang/crystal:1.15.0-build
4949
strategy:
5050
matrix:
5151
part: [0, 1, 2, 3]
@@ -69,7 +69,7 @@ jobs:
6969
needs: build-interpreter
7070
runs-on: ubuntu-24.04
7171
container:
72-
image: crystallang/crystal:1.14.0-build
72+
image: crystallang/crystal:1.15.0-build
7373
name: "Test primitives_spec with interpreter"
7474
steps:
7575
- uses: actions/checkout@v4

.github/workflows/linux.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
strategy:
2323
fail-fast: false
2424
matrix:
25-
crystal_bootstrap_version: [1.7.3, 1.8.2, 1.9.2, 1.10.1, 1.11.2, 1.12.2, 1.13.3, 1.14.0]
25+
crystal_bootstrap_version: [1.7.3, 1.8.2, 1.9.2, 1.10.1, 1.11.2, 1.12.2, 1.13.3, 1.14.1, 1.15.0]
2626
flags: [""]
2727
include:
2828
# libffi is only available starting from the 1.2.2 build images

.github/workflows/llvm.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ jobs:
4040
- name: Install Crystal
4141
uses: crystal-lang/install-crystal@v1
4242
with:
43-
crystal: "1.14.0"
43+
crystal: "1.15.0"
4444

4545
- name: Build libllvm_ext
4646
run: make -B deps

.github/workflows/mingw-w64.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
- name: Install Crystal
3030
uses: crystal-lang/install-crystal@v1
3131
with:
32-
crystal: "1.14.0"
32+
crystal: "1.15.0"
3333

3434
- name: Cross-compile Crystal
3535
run: make && make -B target=x86_64-windows-gnu release=1 interpreter=1

.github/workflows/openssl.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
libssl_test:
1313
runs-on: ubuntu-latest
1414
name: "${{ matrix.pkg }}"
15-
container: crystallang/crystal:1.14.0-alpine
15+
container: crystallang/crystal:1.15.0-alpine
1616
strategy:
1717
fail-fast: false
1818
matrix:

.github/workflows/regex-engine.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
pcre:
1313
runs-on: ubuntu-latest
1414
name: "PCRE"
15-
container: crystallang/crystal:1.14.0-alpine
15+
container: crystallang/crystal:1.15.0-alpine
1616
steps:
1717
- name: Download Crystal source
1818
uses: actions/checkout@v4
@@ -27,7 +27,7 @@ jobs:
2727
pcre2:
2828
runs-on: ubuntu-latest
2929
name: "PCRE2"
30-
container: crystallang/crystal:1.14.0-alpine
30+
container: crystallang/crystal:1.15.0-alpine
3131
steps:
3232
- name: Download Crystal source
3333
uses: actions/checkout@v4

.github/workflows/wasm32.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ env:
1414
jobs:
1515
wasm32-test:
1616
runs-on: ubuntu-24.04
17-
container: crystallang/crystal:1.14.0-build
17+
container: crystallang/crystal:1.15.0-build
1818
steps:
1919
- name: Download Crystal source
2020
uses: actions/checkout@v4

.github/workflows/win_build_portable.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
uses: crystal-lang/install-crystal@v1
2828
id: install-crystal
2929
with:
30-
crystal: "1.14.0"
30+
crystal: "1.15.0"
3131

3232
- name: Download Crystal source
3333
uses: actions/checkout@v4

bin/ci

+3-3
Original file line numberDiff line numberDiff line change
@@ -135,8 +135,8 @@ format() {
135135
prepare_build() {
136136
on_linux verify_linux_environment
137137

138-
on_osx curl -L https://github.com/crystal-lang/crystal/releases/download/1.14.0/crystal-1.14.0-1-darwin-universal.tar.gz -o ~/crystal.tar.gz
139-
on_osx 'pushd ~;gunzip -c ~/crystal.tar.gz | tar xopf -;mv crystal-1.14.0-1 crystal;popd'
138+
on_osx curl -L https://github.com/crystal-lang/crystal/releases/download/1.15.0/crystal-1.15.0-1-darwin-universal.tar.gz -o ~/crystal.tar.gz
139+
on_osx 'pushd ~;gunzip -c ~/crystal.tar.gz | tar xopf -;mv crystal-1.15.0-1 crystal;popd'
140140

141141
# These commands may take a few minutes to run due to the large size of the repositories.
142142
# This restriction has been made on GitHub's request because updating shallow
@@ -189,7 +189,7 @@ with_build_env() {
189189

190190
on_linux verify_linux_environment
191191

192-
export DOCKER_TEST_PREFIX="${DOCKER_TEST_PREFIX:=crystallang/crystal:1.14.0}"
192+
export DOCKER_TEST_PREFIX="${DOCKER_TEST_PREFIX:=crystallang/crystal:1.15.0}"
193193

194194
case $ARCH in
195195
x86_64)

shard.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: crystal
2-
version: 1.15.0
2+
version: 1.16.0-dev
33

44
authors:
55
- Crystal Core Team <[email protected]>

shell.nix

+6-6
Original file line numberDiff line numberDiff line change
@@ -53,18 +53,18 @@ let
5353
# Hashes obtained using `nix-prefetch-url --unpack <url>`
5454
latestCrystalBinary = genericBinary ({
5555
x86_64-darwin = {
56-
url = "https://github.com/crystal-lang/crystal/releases/download/1.14.0/crystal-1.14.0-1-darwin-universal.tar.gz";
57-
sha256 = "sha256:09mp3mngj4wik4v2bffpms3x8dksmrcy0a7hs4cg8b13hrfdrgww";
56+
url = "https://github.com/crystal-lang/crystal/releases/download/1.15.0/crystal-1.15.0-1-darwin-universal.tar.gz";
57+
sha256 = "sha256:1m0y2n4cvf69wpsa33qdb9w73qbacap97mq6a9815das48i8i2pr";
5858
};
5959

6060
aarch64-darwin = {
61-
url = "https://github.com/crystal-lang/crystal/releases/download/1.14.0/crystal-1.14.0-1-darwin-universal.tar.gz";
62-
sha256 = "sha256:09mp3mngj4wik4v2bffpms3x8dksmrcy0a7hs4cg8b13hrfdrgww";
61+
url = "https://github.com/crystal-lang/crystal/releases/download/1.15.0/crystal-1.15.0-1-darwin-universal.tar.gz";
62+
sha256 = "sha256:1m0y2n4cvf69wpsa33qdb9w73qbacap97mq6a9815das48i8i2pr";
6363
};
6464

6565
x86_64-linux = {
66-
url = "https://github.com/crystal-lang/crystal/releases/download/1.14.0/crystal-1.14.0-1-linux-x86_64.tar.gz";
67-
sha256 = "sha256:0p5b22ivggf9xlw91cbhib7n4lzd8is1shd3480jjp14rn1kiy5z";
66+
url = "https://github.com/crystal-lang/crystal/releases/download/1.15.0/crystal-1.15.0-1-linux-x86_64.tar.gz";
67+
sha256 = "sha256:14zxv6v19phb5ippn851g928w5sf9399ikilaxpiy3xjswsxwf07";
6868
};
6969
}.${pkgs.stdenv.system});
7070

src/SOURCE_DATE_EPOCH

-1
This file was deleted.

src/VERSION

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.15.0
1+
1.16.0-dev

0 commit comments

Comments
 (0)