Upgrade to Lucky 0.30.1

Upgrading to 0.31.0 should be very easy. It's just running `shards
update` in the root of the project. That should be all.
This commit is contained in:
Edward Loveall 2022-07-17 11:55:51 -04:00
parent 740230d451
commit 35b72ada37
No known key found for this signature in database
GPG Key ID: A7606DFEC2BA731F
5 changed files with 18 additions and 30 deletions

View File

@ -1,6 +1,7 @@
2022-07-17
* Fix source code link
* Upgrade to Lucky 0.30.1
2022-05-21

View File

@ -17,11 +17,6 @@ if command_not_found "yarn"; then
print_error "Yarn is not installed\n See https://yarnpkg.com/lang/en/docs/install/ for install instructions."
fi
# Only if this isn't CI
if [ -z "$CI" ]; then
lucky ensure_process_runner_installed
fi
if command_not_found "createdb"; then
MSG="Please install the postgres CLI tools, then try again."
if is_mac; then
@ -38,5 +33,3 @@ fi
# if command_not_running "redis-cli ping"; then
# print_error "Redis is not running."
# fi

View File

@ -2,19 +2,23 @@ version: 2.0
shards:
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
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
@ -26,15 +30,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
@ -42,11 +46,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
@ -70,11 +74,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

View File

@ -13,10 +13,10 @@ crystal: 1.2.1
dependencies:
lucky:
github: luckyframework/lucky
version: ~> 0.29.0
version: ~> 0.30.1
authentic:
github: luckyframework/authentic
version: ~> 0.8.1
version: ~> 0.8.2
carbon:
github: luckyframework/carbon
version: ~> 0.2.0

View File

@ -1,10 +0,0 @@
app_server = AppServer.new
spawn do
app_server.listen
end
Spec.after_suite do
LuckyFlow.shutdown
app_server.close
end