Skip to content

Commit

Permalink
Release v1.2.0 (#860)
Browse files Browse the repository at this point in the history
* bump versions for next release

* Updating fixtures
  • Loading branch information
jwoertink committed Apr 21, 2024
1 parent 437fee7 commit 8344b27
Show file tree
Hide file tree
Showing 6 changed files with 28 additions and 28 deletions.
12 changes: 6 additions & 6 deletions fixtures/shard_file_template/expected/shard.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,16 +8,16 @@ crystal: '>= 1.10.0'
dependencies:
lucky:
github: luckyframework/lucky
version: ~> 1.1.0
version: ~> 1.2.0
avram:
github: luckyframework/avram
version: ~> 1.1.0
version: ~> 1.2.0
carbon:
github: luckyframework/carbon
version: ~> 0.4.0
version: ~> 0.5.1
carbon_sendgrid_adapter:
github: luckyframework/carbon_sendgrid_adapter
version: ~> 0.4.0
version: ~> 0.5.0
lucky_env:
github: luckyframework/lucky_env
version: ~> 0.2.0
Expand All @@ -29,11 +29,11 @@ dependencies:
version: '>= 1.0.0, < 2.0.0'
jwt:
github: crystal-community/jwt
version: ~> 1.6.0
version: ~> 1.6.1
development_dependencies:
lucky_flow:
github: luckyframework/lucky_flow
version: ~> 0.9.2
version: ~> 0.10.0
lucky_sec_tester:
github: luckyframework/lucky_sec_tester
version: ~> 0.3.2
10 changes: 5 additions & 5 deletions fixtures/shard_file_template__browser/expected/shard.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,16 +8,16 @@ crystal: '>= 1.10.0'
dependencies:
lucky:
github: luckyframework/lucky
version: ~> 1.1.0
version: ~> 1.2.0
avram:
github: luckyframework/avram
version: ~> 1.1.0
version: ~> 1.2.0
carbon:
github: luckyframework/carbon
version: ~> 0.4.0
version: ~> 0.5.1
carbon_sendgrid_adapter:
github: luckyframework/carbon_sendgrid_adapter
version: ~> 0.4.0
version: ~> 0.5.0
lucky_env:
github: luckyframework/lucky_env
version: ~> 0.2.0
Expand All @@ -27,4 +27,4 @@ dependencies:
development_dependencies:
lucky_flow:
github: luckyframework/lucky_flow
version: ~> 0.9.2
version: ~> 0.10.0
10 changes: 5 additions & 5 deletions fixtures/shard_file_template__generate_auth/expected/shard.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,16 +8,16 @@ crystal: '>= 1.10.0'
dependencies:
lucky:
github: luckyframework/lucky
version: ~> 1.1.0
version: ~> 1.2.0
avram:
github: luckyframework/avram
version: ~> 1.1.0
version: ~> 1.2.0
carbon:
github: luckyframework/carbon
version: ~> 0.4.0
version: ~> 0.5.1
carbon_sendgrid_adapter:
github: luckyframework/carbon_sendgrid_adapter
version: ~> 0.4.0
version: ~> 0.5.0
lucky_env:
github: luckyframework/lucky_env
version: ~> 0.2.0
Expand All @@ -29,5 +29,5 @@ dependencies:
version: '>= 1.0.0, < 2.0.0'
jwt:
github: crystal-community/jwt
version: ~> 1.6.0
version: ~> 1.6.1
development_dependencies: {}
Original file line number Diff line number Diff line change
Expand Up @@ -8,16 +8,16 @@ crystal: '>= 1.10.0'
dependencies:
lucky:
github: luckyframework/lucky
version: ~> 1.1.0
version: ~> 1.2.0
avram:
github: luckyframework/avram
version: ~> 1.1.0
version: ~> 1.2.0
carbon:
github: luckyframework/carbon
version: ~> 0.4.0
version: ~> 0.5.1
carbon_sendgrid_adapter:
github: luckyframework/carbon_sendgrid_adapter
version: ~> 0.4.0
version: ~> 0.5.0
lucky_env:
github: luckyframework/lucky_env
version: ~> 0.2.0
Expand Down
4 changes: 2 additions & 2 deletions shard.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: lucky_cli
version: 1.1.1
version: 1.2.0

authors:
- Paul Smith <paulcsmith0218@gmail.com>
Expand All @@ -11,7 +11,7 @@ targets:
lucky.hello_world:
main: fixtures/hello_world.cr

crystal: ~> 1.6
crystal: ~> 1.10

license: MIT

Expand Down
12 changes: 6 additions & 6 deletions src/lucky_cli/shard_file_generator.cr
Original file line number Diff line number Diff line change
Expand Up @@ -64,19 +64,19 @@ class ShardFileGenerator
{
"lucky" => {
"github" => "luckyframework/lucky",
"version" => "~> 1.1.0",
"version" => "~> 1.2.0",
},
"avram" => {
"github" => "luckyframework/avram",
"version" => "~> 1.1.0",
"version" => "~> 1.2.0",
},
"carbon" => {
"github" => "luckyframework/carbon",
"version" => "~> 0.4.0",
"version" => "~> 0.5.1",
},
"carbon_sendgrid_adapter" => {
"github" => "luckyframework/carbon_sendgrid_adapter",
"version" => "~> 0.4.0",
"version" => "~> 0.5.0",
},
"lucky_env" => {
"github" => "luckyframework/lucky_env",
Expand All @@ -97,7 +97,7 @@ class ShardFileGenerator
},
"jwt" => {
"github" => "crystal-community/jwt",
"version" => "~> 1.6.0",
"version" => "~> 1.6.1",
},
}
end
Expand All @@ -106,7 +106,7 @@ class ShardFileGenerator
{
"lucky_flow" => {
"github" => "luckyframework/lucky_flow",
"version" => "~> 0.9.2",
"version" => "~> 0.10.0",
},
}
end
Expand Down

0 comments on commit 8344b27

Please sign in to comment.