Skip to content

Commit

Permalink
Bump version to 0.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
asomers committed Aug 3, 2019
1 parent 7c6d532 commit 4049d46
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 9 deletions.
4 changes: 2 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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"
```

Expand Down
4 changes: 2 additions & 2 deletions mockall/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "mockall"
version = "0.1.1"
version = "0.2.0"
authors = ["Alan Somers <asomers@gmail.com>"]
license = "MIT/Apache-2.0"
readme = "README.md"
Expand All @@ -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" }
6 changes: 4 additions & 2 deletions mockall_derive/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "mockall_derive"
version = "0.1.0"
version = "0.2.0"
authors = ["Alan Somers <asomers@gmail.com>"]
license = "MIT/Apache-2.0"
repository = "https://github.com/asomers/mockall"
Expand Down Expand Up @@ -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"
4 changes: 2 additions & 2 deletions mockall_examples/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "mockall_examples"
version = "0.1.0"
version = "0.2.0"
authors = ["Alan Somers <asomers@gmail.com>"]
license = "MIT/Apache-2.0"
repository = "https://github.com/asomers/mockall"
Expand All @@ -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"

0 comments on commit 4049d46

Please sign in to comment.