Skip to content

Commit

Permalink
Merge pull request #39 from at-grandpa/crystal-version-0.28.0
Browse files Browse the repository at this point in the history
crystal version 0.28.0
  • Loading branch information
at-grandpa authored Apr 25, 2019
2 parents 549b69f + 7c61822 commit d9fc415
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ Add this to your application's `shard.yml`:
dependencies:
clim:
github: at-grandpa/clim
version: 0.5.0
version: 0.6.0
```
## Minimum sample
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: clim
version: 0.5.0
version: 0.6.0

authors:
- at-grandpa <@at_grandpa>
Expand All @@ -8,6 +8,6 @@ targets:
clim:
main: src/clim.cr

crystal: 0.27.0
crystal: 0.28.0

license: MIT
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ describe "Compile time spec, " do
end
it "'main_command' is not defined." do
`crystal run spec/clim/compile_time_error_spec/files/main_command_is_not_defined.cr --no-color 2>&1`.should eq <<-ERROR
Error in spec/clim/compile_time_error_spec/files/main_command_is_not_defined.cr:4: undefined local variable or method 'sub_command'
Error in spec/clim/compile_time_error_spec/files/main_command_is_not_defined.cr:4: undefined local variable or method 'sub_command' for MyCli.class
sub_command do
^~~~~~~~~~~
Expand Down
2 changes: 1 addition & 1 deletion spec/clim/dsl_spec/option_types/array/int_spec.cr
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ require "../../../dsl_spec"
--array-int32=VALUE Option description. [type:Array(Int32)]
--array-int64=VALUE Option description. [type:Array(Int64)]
--array-int8-default=VALUE Option description. [type:Array(Int8)] [default:[] of Int8]
--array-int8-default-value=VALUE Option description. [type:Array(Int8)] [default:[1_i8, 2_i8, 3_i8]]
--array-int8-default-value=VALUE Option description. [type:Array(Int8)] [default:[1, 2, 3]]
--array-int16-default=VALUE Option description. [type:Array(Int16)] [default:[] of Int16]
--array-int32-default=VALUE Option description. [type:Array(Int32)] [default:[] of Int32]
--array-int64-default=VALUE Option description. [type:Array(Int64)] [default:[] of Int64]
Expand Down
2 changes: 1 addition & 1 deletion src/clim/version.cr
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
class Clim
VERSION = "0.5.0"
VERSION = "0.6.0"
end

0 comments on commit d9fc415

Please sign in to comment.