Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

upgrade to crystal 1.12 #86

Merged
merged 1 commit into from
May 11, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
run: brew update && brew install crystal || true
- name: Build the binary
run: |
export LLVM_CONFIG="$(brew --prefix)/opt/llvm@17/bin/llvm-config"
export LLVM_CONFIG="$(brew --prefix)/opt/llvm@18/bin/llvm-config"
shards build crystalline --release --no-debug -Dpreview_mt --stats --progress --ignore-crystal-version
- name: Upload a Build Artifact
uses: actions/upload-artifact@v2
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
run: shards install --production --ignore-crystal-version
- name: Build the binary
run: |
export LLVM_CONFIG="$(brew --prefix)/opt/llvm@17/bin/llvm-config"
export LLVM_CONFIG="$(brew --prefix)/opt/llvm@18/bin/llvm-config"
shards build crystalline --release --no-debug -Dpreview_mt --stats --progress --ignore-crystal-version
- name: Upload a Build Artifact
uses: actions/upload-artifact@v2
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM crystallang/crystal:1.11.2-alpine
FROM crystallang/crystal:1.12.1-alpine

WORKDIR /app

Expand Down
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,8 @@ Building from source does take a long time._

| Crystal | Crystalline |
| -------- | ----------- |
| **1.11** | **0.12** |
| **1.12** | **0.13** |
| 1.11 | 0.12 |
| 1.10 | 0.11 |
| 1.9 | 0.10 |
| 1.8 | 0.9 |
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.12.2
version: 0.13.0

authors:
- Julien Elbaz <[email protected]>
Expand Down
Loading