diff options
| -rw-r--r-- | CLI/ruby/CHANGELOG.md | 4 | ||||
| -rw-r--r-- | CLI/ruby/lib/game_of_life/version.rb | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/CLI/ruby/CHANGELOG.md b/CLI/ruby/CHANGELOG.md index 54e69ab..44dcc70 100644 --- a/CLI/ruby/CHANGELOG.md +++ b/CLI/ruby/CHANGELOG.md @@ -2,6 +2,10 @@ ## Unreleased +## 1.0.7 +- Fix compatibility issues with ruby 3 +- Fix rubocop offenses (after update) + ## 1.0.6 - Fix `NameError` when invalid numeric value is passed (~2) - Update dependencies diff --git a/CLI/ruby/lib/game_of_life/version.rb b/CLI/ruby/lib/game_of_life/version.rb index 7ee22e0..58fd737 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.6" + VERSION = "1.0.7" end |
