diff options
| author | a14m <[email protected]> | 2021-01-30 16:24:38 +0100 |
|---|---|---|
| committer | a14m <[email protected]> | 2021-01-30 16:24:38 +0100 |
| commit | 9ba51d3f6b2920291deb0793413661b29322b75a (patch) | |
| tree | 2e70bd8d324dc6d6399c125e2e1f462d3ed4586d /CLI/ruby | |
| parent | 602d200b9fd0ebde60a2391ffd6bb2408689f3a5 (diff) | |
Prepare 1.0.3 release
Diffstat (limited to 'CLI/ruby')
| -rw-r--r-- | CLI/ruby/CHANGELOG.md | 5 | ||||
| -rw-r--r-- | CLI/ruby/Gemfile.lock | 4 | ||||
| -rw-r--r-- | CLI/ruby/lib/game_of_life/version.rb | 2 |
3 files changed, 8 insertions, 3 deletions
diff --git a/CLI/ruby/CHANGELOG.md b/CLI/ruby/CHANGELOG.md index aef96b7..f4bd743 100644 --- a/CLI/ruby/CHANGELOG.md +++ b/CLI/ruby/CHANGELOG.md @@ -2,6 +2,11 @@ ## Unreleased +## 1.0.3 +- Fix `game-of-life --live-cell XX` can run (when it should not) #1 +- Fix `game-of-life --dead-cell XX` can run (when it should not) #1 +- Fix `game-of-life --live-cell X --dead-cell X` can run (when it should not) #1 + ## 1.0.2 - Remove CodeCov.io integration - Deploy the gem from the new source host (sr.ht) diff --git a/CLI/ruby/Gemfile.lock b/CLI/ruby/Gemfile.lock index 7fbe122..c9e7863 100644 --- a/CLI/ruby/Gemfile.lock +++ b/CLI/ruby/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - terminal_game_of_life (1.0.2) + terminal_game_of_life (1.0.3) thor (~> 1.0) GEM @@ -65,7 +65,7 @@ GEM simplecov_json_formatter (~> 0.1) simplecov-html (0.12.3) simplecov_json_formatter (0.1.2) - thor (1.0.1) + thor (1.1.0) unicode-display_width (1.7.0) yard (0.9.25) diff --git a/CLI/ruby/lib/game_of_life/version.rb b/CLI/ruby/lib/game_of_life/version.rb index 1f5664e..91eeb99 100644 --- a/CLI/ruby/lib/game_of_life/version.rb +++ b/CLI/ruby/lib/game_of_life/version.rb @@ -2,5 +2,5 @@ module GameOfLife # Game of life version number - VERSION = "1.0.2" + VERSION = "1.0.3" end |
