diff --git a/CHANGELOG.md b/CHANGELOG.md index 94511b47..715a1277 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,7 +3,7 @@ All notable changes to this project will be documented in this file. This project adheres to [Semantic Versioning](http://semver.org/). -## [Unreleased] +## [0.2.0] - 2 August 2019 ### Added - Support mocking generic specializing methods. @@ -42,7 +42,7 @@ This project adheres to [Semantic Versioning](http://semver.org/). Now `mock!` and `#[automock]` are the only way to use Mockall. ([#12](https://github.com/asomers/mockall/pull/12)) -## [0.1.1] +## [0.1.1] - 3 July 2019 ### Added ### Changed ### Fixed diff --git a/README.md b/README.md index fa1dfe5a..5527d65b 100644 --- a/README.md +++ b/README.md @@ -31,7 +31,7 @@ your `Cargo.toml`: [dev-dependencies] downcast = "0.10" fragile = "0.3" -mockall = "0.1" +mockall = "0.2" predicates-tree = "1.0" ``` diff --git a/mockall/Cargo.toml b/mockall/Cargo.toml index 79400547..ddbcc0b0 100644 --- a/mockall/Cargo.toml +++ b/mockall/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "mockall" -version = "0.1.1" +version = "0.2.0" authors = ["Alan Somers "] license = "MIT/Apache-2.0" readme = "README.md" @@ -27,4 +27,4 @@ fragile = "0.3" lazy_static = "1.0" predicates = "1.0.1" predicates-tree = "1.0" -mockall_derive = { version = "0.1.0", path = "../mockall_derive" } +mockall_derive = { version = "=0.2.0", path = "../mockall_derive" } diff --git a/mockall_derive/Cargo.toml b/mockall_derive/Cargo.toml index f7f9b177..cc6c5dd6 100644 --- a/mockall_derive/Cargo.toml +++ b/mockall_derive/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "mockall_derive" -version = "0.1.0" +version = "0.2.0" authors = ["Alan Somers "] license = "MIT/Apache-2.0" repository = "https://github.com/asomers/mockall" @@ -33,6 +33,8 @@ syn = { version = "0.15", features = ["extra-traits", "full"] } [dev-dependencies] downcast = "0.10" fragile = "0.3" -mockall = { version = "=0.1.1", path = "../mockall" } +# Mockall dev dependency should really be =0.2.0, but "cargo publish" won't +# let us get away with that because it thinks there's a circular dependency. +mockall = { version = ">=0.1", path = "../mockall" } predicates-tree = "1.0" pretty_assertions = "0.5" diff --git a/mockall_examples/Cargo.toml b/mockall_examples/Cargo.toml index 568609a7..e6619615 100644 --- a/mockall_examples/Cargo.toml +++ b/mockall_examples/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "mockall_examples" -version = "0.1.0" +version = "0.2.0" authors = ["Alan Somers "] license = "MIT/Apache-2.0" repository = "https://github.com/asomers/mockall" @@ -22,5 +22,5 @@ nightly-docs = [] [dependencies] downcast = "0.10" fragile = "0.3" -mockall = { version = "=0.1.1", path = "../mockall" } +mockall = { version = "=0.2.0", path = "../mockall" } predicates-tree = "1.0"