Skip to content

Commit

Permalink
Merge pull request #72 from at-grandpa/version-up-0.12.0
Browse files Browse the repository at this point in the history
Version up 0.12.0
  • Loading branch information
at-grandpa authored May 16, 2020
2 parents 6e1243f + 0eb1819 commit cc13ebc
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -23,4 +23,4 @@ spec/%:
-v $(PWD):/workdir \
-w /workdir \
crystallang/crystal:latest \
/bin/sh -c "crystal eval 'array = \"$(SPEC_FILES)\".split(\" \"); puts array.in_groups_of((array.size / ($(NUM_OF_JOBS))).ceil.to_i).map(&.compact)[$* - 1].join(\" \")' | xargs -d \" \" -I{} /bin/sh -c 'echo \"\n\n=========================\n{}\"; crystal spec {}'"
/bin/sh -c "crystal eval 'array = \"$(SPEC_FILES)\".split(\" \"); puts array.map_with_index{|e,i| {index: i, value: e}}.group_by{|e| e[:index] % ($(NUM_OF_JOBS))}[$* - 1].map(&.[](:value)).join(\" \")' | xargs -d \" \" -I{} /bin/sh -c 'echo \"\n\n=========================\n{}\"; crystal spec {}'"
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ Add this to your application's `shard.yml`:
dependencies:
clim:
github: at-grandpa/clim
version: 0.11.2
version: 0.12.0
```
## Samples
Expand Down
2 changes: 1 addition & 1 deletion shard.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: clim
version: 0.11.2
version: 0.12.0

authors:
- at-grandpa <@at_grandpa>
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.11.2"
VERSION = "0.12.0"
end

0 comments on commit cc13ebc

Please sign in to comment.