diff options
author | HampusM <hampus@hampusmat.com> | 2023-03-25 17:30:08 +0100 |
---|---|---|
committer | HampusM <hampus@hampusmat.com> | 2023-03-25 17:30:08 +0100 |
commit | 8928993d330482d164ae5403d7861fbb68252de4 (patch) | |
tree | b1b827f3925f0051717871551084ae6edb97fb21 | |
parent | aef63bfecb7731c0307cc65eab0b9a06b8a7363d (diff) |
build: bump version to 0.2.0
-rw-r--r-- | Cargo.toml | 4 | ||||
-rw-r--r-- | macros/Cargo.toml | 4 |
2 files changed, 4 insertions, 4 deletions
@@ -1,6 +1,6 @@ [package] name = "ridicule" -version = "0.1.0" +version = "0.2.0" edition = "2021" license = "MIT OR Apache-2.0" description = "Rust mocking library supporting non-static function generics" @@ -11,4 +11,4 @@ members = ["macros"] [dependencies] predicates = "3.0.1" -ridicule-macros = { path = "./macros" } +ridicule-macros = { version = "0.2.0", path = "./macros" } diff --git a/macros/Cargo.toml b/macros/Cargo.toml index 6fa4a5f..4617a25 100644 --- a/macros/Cargo.toml +++ b/macros/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ridicule-macros" -version = "0.1.0" +version = "0.2.0" edition = "2021" [lib] @@ -13,4 +13,4 @@ proc-macro-error = "1.0.4" proc-macro2 = "1.0.52" [dev-dependencies] -ridicule = { version = "0.1.0", path = ".." } +ridicule = { version = "0.2.0", path = ".." } |