Skip to content

Commit

Permalink
Bump Crystal version to 1.4.1 and Lucky version to 0.30.0 (#772)
Browse files Browse the repository at this point in the history
* Bump Crystal version to 1.4.1

* Debug failing workflows

* Bump shards and Lucky version

* Revert workflow changes

* Roll back LuckyFlow
  • Loading branch information
stephendolan authored Jul 5, 2022
1 parent 5e27865 commit 7f09d41
Show file tree
Hide file tree
Showing 7 changed files with 31 additions and 25 deletions.
2 changes: 1 addition & 1 deletion .crystal-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.2.2
1.4.1
6 changes: 3 additions & 3 deletions .github/workflows/lucky.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:
- name: Install shards
if: steps.crystal-cache.outputs.cache-hit != 'true'
run: shards check || shards install --ignore-crystal-version
run: shards check || shards install --frozen

- name: Run ameba linter
run: ./bin/ameba
Expand All @@ -49,7 +49,7 @@ jobs:
fail-fast: true
matrix:
crystal_version:
- 1.2.0
- 1.4.1
- latest
experimental:
- false
Expand Down Expand Up @@ -98,7 +98,7 @@ jobs:
- name: Install shards
if: steps.crystal-cache.outputs.cache-hit != 'true'
run: shards check || shards install --ignore-crystal-version
run: shards check || shards install --frozen

- name: Install yarn packages
if: steps.yarn-cache.outputs.cache-hit != 'true'
Expand Down
2 changes: 1 addition & 1 deletion .tool-versions
Original file line number Diff line number Diff line change
@@ -1 +1 @@
crystal 1.2.2
crystal 1.4.1
2 changes: 1 addition & 1 deletion config/watch.yml
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
host: 127.0.0.1
port: 5000
port: 3000
30 changes: 17 additions & 13 deletions shard.lock
Original file line number Diff line number Diff line change
Expand Up @@ -2,27 +2,31 @@ version: 2.0
shards:
ameba:
git: https://github.com/crystal-ameba/ameba.git
version: 0.14.3
version: 1.0.0

authentic:
git: https://github.com/luckyframework/authentic.git
version: 0.8.1
version: 0.8.2

avram:
git: https://github.com/luckyframework/avram.git
version: 0.22.0
version: 0.23.0

backtracer:
git: https://github.com/sija/backtracer.cr.git
version: 1.2.1

bindata:
git: https://github.com/spider-gazelle/bindata.git
version: 1.9.1
version: 1.10.0

cadmium_transliterator:
git: https://github.com/cadmiumcr/transliterator.git
version: 0.1.0+git.commit.46c4c14594057dbcfaf27e7e7c8c164d3f0ce3f1

carbon:
git: https://github.com/luckyframework/carbon.git
version: 0.2.0
version: 0.2.1

cry:
git: https://github.com/luckyframework/cry.git
Expand All @@ -34,15 +38,15 @@ shards:

db:
git: https://github.com/crystal-lang/crystal-db.git
version: 0.10.1
version: 0.11.0

dexter:
git: https://github.com/luckyframework/dexter.git
version: 0.3.3
version: 0.3.4

exception_page:
git: https://github.com/crystal-loot/exception_page.git
version: 0.2.1
version: 0.2.2

habitat:
git: https://github.com/luckyframework/habitat.git
Expand All @@ -54,11 +58,11 @@ shards:

lucky:
git: https://github.com/luckyframework/lucky.git
version: 0.29.0
version: 0.30.1

lucky_cache:
git: https://github.com/luckyframework/lucky_cache.git
version: 0.1.0
version: 0.1.1

lucky_env:
git: https://github.com/luckyframework/lucky_env.git
Expand All @@ -82,11 +86,11 @@ shards:

pg:
git: https://github.com/will/crystal-pg.git
version: 0.24.0
version: 0.26.0

pulsar:
git: https://github.com/luckyframework/pulsar.git
version: 0.2.2
version: 0.2.3

selenium:
git: https://github.com/matthewmcgarvey/selenium.cr.git
Expand All @@ -98,7 +102,7 @@ shards:

spark:
git: https://github.com/stephendolan/spark.git
version: 1.14.3
version: 1.15.0

splay_tree_map:
git: https://github.com/wyhaines/splay_tree_map.cr.git
Expand Down
12 changes: 6 additions & 6 deletions shard.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,13 +13,13 @@ crystal: 1.2.2
dependencies:
lucky:
github: luckyframework/lucky
version: ~> 0.29.0
version: ~> 0.30.0
authentic:
github: luckyframework/authentic
version: ~> 0.8.1
version: ~> 0.8.2
carbon:
github: luckyframework/carbon
version: ~> 0.2.0
version: ~> 0.2.1
lucky_env:
github: luckyframework/lucky_env
version: ~> 0.1.4
Expand All @@ -30,10 +30,10 @@ dependencies:
development_dependencies:
spark:
github: stephendolan/spark
version: ~> 1.14
version: ~> 1.15
ameba:
github: crystal-ameba/ameba
version: ~> 0.14.2
version: ~> 1.0
lucky_flow:
github: luckyframework/lucky_flow
version: ~> 0.7.3
version: ~> 0.7.0
2 changes: 2 additions & 0 deletions spec/support/api_client.cr
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
class ApiClient < Lucky::BaseHTTPClient
app AppServer.new

def initialize
super
headers("Content-Type": "application/json")
Expand Down

0 comments on commit 7f09d41

Please sign in to comment.