summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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
-rw-r--r--CLI/rust/Cargo.lock2
-rw-r--r--CLI/rust/Cargo.toml2
5 files changed, 7 insertions, 4 deletions
diff --git a/CLI/ruby/CHANGELOG.md b/CLI/ruby/CHANGELOG.md
index eb2167c..54e69ab 100644
--- a/CLI/ruby/CHANGELOG.md
+++ b/CLI/ruby/CHANGELOG.md
@@ -1,10 +1,13 @@
# Changelog
## Unreleased
+
+## 1.0.6
- Fix `NameError` when invalid numeric value is passed (~2)
- Update dependencies
- Fix banner showing on smaller height to show banner correctly
- Fix when CLI exits with an error to show the error in a separate line
+- Minor documentation updates
## 1.0.5
- Fix showing the seed on a separate line after finishing
diff --git a/CLI/ruby/Gemfile.lock b/CLI/ruby/Gemfile.lock
index 0dd8e9f..7223358 100644
--- a/CLI/ruby/Gemfile.lock
+++ b/CLI/ruby/Gemfile.lock
@@ -1,7 +1,7 @@
PATH
remote: .
specs:
- terminal_game_of_life (1.0.5)
+ terminal_game_of_life (1.0.6)
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 81154ef..7ee22e0 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.5"
+ VERSION = "1.0.6"
end
diff --git a/CLI/rust/Cargo.lock b/CLI/rust/Cargo.lock
index 5fccadd..aa056e0 100644
--- a/CLI/rust/Cargo.lock
+++ b/CLI/rust/Cargo.lock
@@ -437,7 +437,7 @@ dependencies = [
[[package]]
name = "terminal_game_of_life"
-version = "1.0.0-pre"
+version = "1.0.0"
dependencies = [
"clap",
"ctrlc",
diff --git a/CLI/rust/Cargo.toml b/CLI/rust/Cargo.toml
index 116d762..4f6d159 100644
--- a/CLI/rust/Cargo.toml
+++ b/CLI/rust/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "terminal_game_of_life"
-version = "1.0.0-pre"
+version = "1.0.0"
authors = ["a14m <[email protected]>"]
edition = "2018"
description = "Conway's game of life implementation as a CLI rust crate"