summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authora14m <[email protected]>2021-02-16 23:52:45 +0100
committera14m <[email protected]>2021-02-16 23:52:45 +0100
commitb58228252d942357a04175d6f9b7d9a8be33e96c (patch)
tree7e547389e9a1c6ebaf6e9b226003db2ea5d06566
parent0d11b40e430e57f449d56c874464dbeec20b106a (diff)
Pump version
-rw-r--r--CLI/ruby/CHANGELOG.md3
-rw-r--r--CLI/ruby/Gemfile.lock2
-rw-r--r--CLI/ruby/lib/game_of_life/version.rb2
3 files changed, 5 insertions, 2 deletions
diff --git a/CLI/ruby/CHANGELOG.md b/CLI/ruby/CHANGELOG.md
index 01eee5e..68da6a8 100644
--- a/CLI/ruby/CHANGELOG.md
+++ b/CLI/ruby/CHANGELOG.md
@@ -2,6 +2,9 @@
## Unreleased
+## 1.0.5
+- Fix showing the seed on a separate line after finishing
+
## 1.0.4
- Better performance/usability when running the CLI (by using alternate screen)
diff --git a/CLI/ruby/Gemfile.lock b/CLI/ruby/Gemfile.lock
index 5620ab8..06c88cb 100644
--- a/CLI/ruby/Gemfile.lock
+++ b/CLI/ruby/Gemfile.lock
@@ -1,7 +1,7 @@
PATH
remote: .
specs:
- terminal_game_of_life (1.0.4)
+ terminal_game_of_life (1.0.5)
thor (~> 1.0)
GEM
diff --git a/CLI/ruby/lib/game_of_life/version.rb b/CLI/ruby/lib/game_of_life/version.rb
index 97df5ac..81154ef 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.4"
+ VERSION = "1.0.5"
end