Skip to content

Commit 1c6d733

Browse files
authored
bump versions. Also added a small note about Windows (#1412)
1 parent c491d17 commit 1c6d733

File tree

4 files changed

+13
-11
lines changed

4 files changed

+13
-11
lines changed

shard.lock

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -23,15 +23,15 @@ shards:
2323

2424
carbon:
2525
git: https://github.com/luckyframework/carbon.git
26-
version: 0.5.1
26+
version: 0.6.0
2727

2828
carbon_sendgrid_adapter:
2929
git: https://github.com/luckyframework/carbon_sendgrid_adapter.git
30-
version: 0.5.1
30+
version: 0.6.0
3131

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

3636
cry:
3737
git: https://github.com/luckyframework/cry.git
@@ -47,7 +47,7 @@ shards:
4747

4848
exception_page:
4949
git: https://github.com/crystal-loot/exception_page.git
50-
version: 0.4.1
50+
version: 0.5.0
5151

5252
fnv:
5353
git: https://github.com/naqvis/crystal-fnv.git
@@ -67,7 +67,7 @@ shards:
6767

6868
lucky:
6969
git: https://github.com/luckyframework/lucky.git
70-
version: 1.2.0
70+
version: 1.3.0
7171

7272
lucky_env:
7373
git: https://github.com/luckyframework/lucky_env.git
@@ -79,7 +79,7 @@ shards:
7979

8080
lucky_router:
8181
git: https://github.com/luckyframework/lucky_router.git
82-
version: 0.5.2
82+
version: 0.6.0
8383

8484
lucky_task:
8585
git: https://github.com/luckyframework/lucky_task.git

shard.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,13 +13,13 @@ crystal: ">= 1.10.0"
1313
dependencies:
1414
lucky:
1515
github: luckyframework/lucky
16-
version: ~> 1.2.0
16+
version: ~> 1.3.0
1717
carbon:
1818
github: luckyframework/carbon
19-
version: ~> 0.5.1
19+
version: ~> 0.6.0
2020
carbon_sendgrid_adapter:
2121
github: luckyframework/carbon_sendgrid_adapter
22-
version: ~> 0.5.0
22+
version: ~> 0.6.0
2323
lucky_env:
2424
github: luckyframework/lucky_env
2525
version: ~> 0.2.0

src/actions/guides/getting-started/installing.cr

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -140,6 +140,8 @@ class Guides::GettingStarted::Installing < GuideAction
140140
scoop install lucky
141141
```
142142
143+
> Windows compatibility is still experimental. Please report any issues you may have
144+
143145
## Install Lucky CLI with Homebrew
144146
145147
Once the required dependencies above are installed, set up Lucky for your system.

src/models/lucky_cli_version.cr

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,14 +8,14 @@ module LuckyCliVersion
88
end
99

1010
def current_version : SemanticVersion
11-
SemanticVersion.new(1, 2, 0)
11+
SemanticVersion.new(1, 3, 0)
1212
end
1313

1414
def min_compatible_crystal_version : SemanticVersion
1515
SemanticVersion.new(1, 10, 0)
1616
end
1717

1818
def max_compatible_crystal_version : SemanticVersion
19-
SemanticVersion.new(1, 12, 1)
19+
SemanticVersion.new(1, 14, 0)
2020
end
2121
end

0 commit comments

Comments
 (0)