summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--CLI/rust/CHANGELOG.md3
-rw-r--r--CLI/rust/Cargo.toml4
2 files changed, 5 insertions, 2 deletions
diff --git a/CLI/rust/CHANGELOG.md b/CLI/rust/CHANGELOG.md
index 2756bea..8f0b6d7 100644
--- a/CLI/rust/CHANGELOG.md
+++ b/CLI/rust/CHANGELOG.md
@@ -2,5 +2,8 @@
## Unreleased
+## 1.0.1
+- Fix mocking library to work with latest rust version
+
## 1.0.0
- Initial implementation of the CLI to match the ruby `1.0.5` gem specifications
diff --git a/CLI/rust/Cargo.toml b/CLI/rust/Cargo.toml
index 4f6d159..d3a5cae 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"
+version = "1.0.1"
authors = ["a14m <[email protected]>"]
edition = "2018"
description = "Conway's game of life implementation as a CLI rust crate"
@@ -23,4 +23,4 @@ regex = "1.4.5"
terminal_size = "0.1.16"
[dev-dependencies]
-mocktopus = "^0.7.0"
+mocktopus = "^0.8.0"