From ad9278a190d522a976943c3d6902bc42cf038ace Mon Sep 17 00:00:00 2001 From: Julien Elbaz Date: Sun, 21 Jul 2024 08:13:16 +0200 Subject: [PATCH] upgrade to crystal 1.13 --- Dockerfile | 4 ++-- README.md | 3 ++- shard.yml | 2 +- 3 files changed, 5 insertions(+), 4 deletions(-) diff --git a/Dockerfile b/Dockerfile index 87a436c..e272c00 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM crystallang/crystal:1.12.1-alpine +FROM crystallang/crystal:1.13.1-alpine WORKDIR /app @@ -9,7 +9,7 @@ RUN apk add --update --no-cache --force-overwrite \ # Build crystalline. COPY . /app/ -RUN git clone -b 1.11.2 --depth=1 https://github.com/crystal-lang/crystal \ +RUN git clone -b 1.13.1 --depth=1 https://github.com/crystal-lang/crystal \ && make -C crystal llvm_ext \ && CRYSTAL_PATH=crystal/src:lib shards build crystalline \ --no-debug --progress --stats --production --static --release \ diff --git a/README.md b/README.md index 8392100..bbf187f 100644 --- a/README.md +++ b/README.md @@ -32,7 +32,8 @@ Building from source does take a long time._ | Crystal | Crystalline | | -------- | ----------- | -| **1.12** | **0.13** | +| **1.13** | **0.14** | +| 1.12 | 0.13 | | 1.11 | 0.12 | | 1.10 | 0.11 | | 1.9 | 0.10 | diff --git a/shard.yml b/shard.yml index a778b04..e4f3586 100644 --- a/shard.yml +++ b/shard.yml @@ -1,5 +1,5 @@ name: crystalline -version: 0.13.1 +version: 0.14.0 authors: - Julien Elbaz