Skip to content

Upgrading the site to Lucky 1.3.0 #1412

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

Merged
merged 1 commit into from
Oct 21, 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
12 changes: 6 additions & 6 deletions shard.lock
Original file line number Diff line number Diff line change
Expand Up @@ -23,15 +23,15 @@ shards:

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

carbon_sendgrid_adapter:
git: https://github.com/luckyframework/carbon_sendgrid_adapter.git
version: 0.5.1
version: 0.6.0

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

cry:
git: https://github.com/luckyframework/cry.git
Expand All @@ -47,7 +47,7 @@ shards:

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

fnv:
git: https://github.com/naqvis/crystal-fnv.git
Expand All @@ -67,7 +67,7 @@ shards:

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

lucky_env:
git: https://github.com/luckyframework/lucky_env.git
Expand All @@ -79,7 +79,7 @@ shards:

lucky_router:
git: https://github.com/luckyframework/lucky_router.git
version: 0.5.2
version: 0.6.0

lucky_task:
git: https://github.com/luckyframework/lucky_task.git
Expand Down
6 changes: 3 additions & 3 deletions shard.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,13 +13,13 @@ crystal: ">= 1.10.0"
dependencies:
lucky:
github: luckyframework/lucky
version: ~> 1.2.0
version: ~> 1.3.0
carbon:
github: luckyframework/carbon
version: ~> 0.5.1
version: ~> 0.6.0
carbon_sendgrid_adapter:
github: luckyframework/carbon_sendgrid_adapter
version: ~> 0.5.0
version: ~> 0.6.0
lucky_env:
github: luckyframework/lucky_env
version: ~> 0.2.0
Expand Down
2 changes: 2 additions & 0 deletions src/actions/guides/getting-started/installing.cr
Original file line number Diff line number Diff line change
Expand Up @@ -140,6 +140,8 @@ class Guides::GettingStarted::Installing < GuideAction
scoop install lucky
```

> Windows compatibility is still experimental. Please report any issues you may have

## Install Lucky CLI with Homebrew

Once the required dependencies above are installed, set up Lucky for your system.
Expand Down
4 changes: 2 additions & 2 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, 2, 0)
SemanticVersion.new(1, 3, 0)
end

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

def max_compatible_crystal_version : SemanticVersion
SemanticVersion.new(1, 12, 1)
SemanticVersion.new(1, 14, 0)
end
end
Loading