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

Bump all versions to the latest. #1303

Merged
merged 1 commit into from
Apr 22, 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 .crystal-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.7.3
1.10.1
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
- uses: actions/checkout@v4
- uses: crystal-lang/install-crystal@v1
with:
crystal: 1.7.3
crystal: latest
- name: Install shards
run: shards install
- name: Setup Lucky
Expand Down
46 changes: 29 additions & 17 deletions shard.lock
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ version: 2.0
shards:
ameba:
git: https://github.com/crystal-ameba/ameba.git
version: 1.5.0+git.commit.c9538220c6eee41dcd15a2d1c2ec87953721a3fc
version: 1.5.0

awscr-s3:
git: https://github.com/taylorfinnell/awscr-s3.git
Expand All @@ -22,15 +22,15 @@ shards:

carbon:
git: https://github.com/luckyframework/carbon.git
version: 0.4.1
version: 0.5.1

carbon_sendgrid_adapter:
git: https://github.com/luckyframework/carbon_sendgrid_adapter.git
version: 0.4.0
version: 0.5.0

cmark:
git: https://github.com/amauryt/cr-cmark-gfm.git
version: 0.1.3+git.commit.a1dddcf35252c82b2fe55239ab198ad8239e8a33
version: 0.1.3+git.commit.ff464803e2006b1047e3bb4c798f426f621cd7e6

cry:
git: https://github.com/luckyframework/cry.git
Expand All @@ -46,27 +46,35 @@ shards:

exception_page:
git: https://github.com/crystal-loot/exception_page.git
version: 0.3.1
version: 0.4.1

fnv:
git: https://github.com/naqvis/crystal-fnv.git
version: 0.1.3

habitat:
git: https://github.com/luckyframework/habitat.git
version: 0.4.8

html5:
git: https://github.com/naqvis/crystal-html5.git
version: 0.5.0

lexbor:
git: https://github.com/kostya/lexbor.git
version: 3.0.4
version: 3.1.3

lucky:
git: https://github.com/luckyframework/lucky.git
version: 1.1.0
version: 1.2.0

lucky_env:
git: https://github.com/luckyframework/lucky_env.git
version: 0.1.4
version: 0.2.0

lucky_flow:
git: https://github.com/luckyframework/lucky_flow.git
version: 0.7.3
version: 0.10.0

lucky_router:
git: https://github.com/luckyframework/lucky_router.git
Expand All @@ -85,26 +93,30 @@ shards:
version: 0.2.3

selenium:
git: https://github.com/matthewmcgarvey/selenium.cr.git
version: 0.9.1
git: https://github.com/crystal-loot/selenium.cr.git
version: 0.12.1

shell-table:
git: https://github.com/luckyframework/shell-table.cr.git
version: 0.9.3

sitemapper:
git: https://github.com/jwoertink/sitemapper.git
version: 0.8.1

teeplate:
git: https://github.com/luckyframework/teeplate.git
version: 0.8.5
version: 0.9.0

webdrivers:
git: https://github.com/matthewmcgarvey/webdrivers.cr.git
git: https://github.com/crystal-loot/webdrivers.cr.git
version: 0.4.3

webless:
git: https://github.com/crystal-loot/webless.git
version: 0.1.0

wordsmith:
git: https://github.com/luckyframework/wordsmith.git
version: 0.4.0

xpath2:
git: https://github.com/naqvis/crystal-xpath2.git
version: 0.1.3

18 changes: 9 additions & 9 deletions shard.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,21 +8,21 @@ targets:
website_v2:
main: src/website_v2.cr

crystal: ">= 1.6.0"
crystal: ">= 1.10.0"

dependencies:
lucky:
github: luckyframework/lucky
version: ~> 1.1.0
version: ~> 1.2.0
carbon:
github: luckyframework/carbon
version: ~> 0.3
version: ~> 0.5.1
carbon_sendgrid_adapter:
github: luckyframework/carbon_sendgrid_adapter
version: ~> 0.3
version: ~> 0.5.0
lucky_env:
github: luckyframework/lucky_env
version: ~> 0.1.4
version: ~> 0.2.0
cmark:
github: amauryt/cr-cmark-gfm
branch: master
Expand All @@ -31,15 +31,15 @@ dependencies:
branch: master
lexbor:
github: kostya/lexbor
version: ~> 3.0.4
version: ~> 3.1.3
sitemapper:
github: jwoertink/sitemapper
version: ~> 0.8.1
version: ~> 0.9.0

development_dependencies:
lucky_flow:
github: luckyframework/lucky_flow
version: ~> 0.7.3
version: ~> 0.10.0
ameba:
github: crystal-ameba/ameba
branch: master
version: ~> 1.5.0
6 changes: 3 additions & 3 deletions src/models/lucky_cli_version.cr
Original file line number Diff line number Diff line change
Expand Up @@ -8,14 +8,14 @@ module LuckyCliVersion
end

def current_version : SemanticVersion
SemanticVersion.new(1, 1, 1)
SemanticVersion.new(1, 2, 0)
end

def min_compatible_crystal_version : SemanticVersion
SemanticVersion.new(1, 6, 0)
SemanticVersion.new(1, 10, 0)
end

def max_compatible_crystal_version : SemanticVersion
SemanticVersion.new(1, 11, 2)
SemanticVersion.new(1, 12, 1)
end
end