Skip to content

Commit

Permalink
upgrad to crystal 1.10
Browse files Browse the repository at this point in the history
  • Loading branch information
elbywan committed Oct 10, 2023
1 parent 41feafe commit 0d92862
Show file tree
Hide file tree
Showing 4 changed files with 18 additions and 16 deletions.
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM crystallang/crystal:1.9.0-alpine
FROM crystallang/crystal:1.10.0-alpine

WORKDIR /app

Expand All @@ -9,7 +9,7 @@ RUN apk add --update --no-cache --force-overwrite \
# Build crystalline.
COPY . /app/

RUN git clone -b 1.9.0 --depth=1 https://github.com/crystal-lang/crystal \
RUN git clone -b 1.10.0 --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 \
Expand Down
27 changes: 14 additions & 13 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,19 +30,20 @@ Building from source does take a long time._

### Compatibility

| Crystal | Crystalline |
| --------- | ----------- |
| **1.9.x** | **0.10** |
| 1.8 | 0.9 |
| 1.7 | 0.8 |
| 1.6 | 0.7 |
| 1.4 | 0.6 |
| 1.3 | 0.5 |
| 1.2 | 0.4 |
| 1.1 | 0.4 |
| 1.0 | 0.3 |
| 0.36 | 0.2 |
| 0.35.1 | 0.1 |
| Crystal | Crystalline |
| ---------- | ----------- |
| **1.10.x** | **0.11** |
| 1.9 | 0.10 |
| 1.8 | 0.9 |
| 1.7 | 0.8 |
| 1.6 | 0.7 |
| 1.4 | 0.6 |
| 1.3 | 0.5 |
| 1.2 | 0.4 |
| 1.1 | 0.4 |
| 1.0 | 0.3 |
| 0.36 | 0.2 |
| 0.35.1 | 0.1 |

### Pre-built binaries

Expand Down
2 changes: 1 addition & 1 deletion shard.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: crystalline
version: 0.10.0
version: 0.11.0

authors:
- Julien Elbaz <elbywan@hotmail.com>
Expand Down
1 change: 1 addition & 0 deletions src/crystalline/requires.cr
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
require "llvm/lib_llvm"
require "compiler/crystal/annotatable"
require "compiler/crystal/tools/dependencies"
require "compiler/crystal/compiler"
require "compiler/crystal/config"
require "compiler/crystal/crystal_path"
Expand Down

0 comments on commit 0d92862

Please sign in to comment.