Skip to content

Commit

Permalink
v0.4.8
Browse files Browse the repository at this point in the history
  • Loading branch information
Artem-Romanenia committed Jul 3, 2024
1 parent c5752ea commit 1b4be6e
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 9 deletions.
8 changes: 4 additions & 4 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,17 +1,17 @@
[package]
name = "o2o"
version = "0.4.7"
version = "0.4.8"
edition = "2021"
authors = ["Artem Romanenia <artem.romanenia@gmail.com>"]
categories = ["rust-patterns"]
description = "Object to Object mapper for Rust. Derive 'From' and 'Into' traits."
description = "Object to Object mapper for Rust. Derive '(Try)From' and '(Try)Into' traits."
keywords = ["from", "into", "copy", "mapper", "derive"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/Artem-Romanenia/o2o"

[dependencies]
o2o-impl = { version = "0.4.7", path = "o2o-impl" }
o2o-macros = { version = "0.4.7", path = "o2o-macros" }
o2o-impl = { version = "0.4.8", path = "o2o-impl" }
o2o-macros = { version = "0.4.8", path = "o2o-macros" }

[workspace]
members = ["o2o-impl", "o2o-macros", "o2o-tests"]
2 changes: 1 addition & 1 deletion o2o-impl/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "o2o-impl"
version = "0.4.7"
version = "0.4.8"
edition = "2021"
authors = ["Artem Romanenia <artem.romanenia@gmail.com>"]
description = "Implementation of 'o2o' crate"
Expand Down
4 changes: 2 additions & 2 deletions o2o-macros/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "o2o-macros"
version = "0.4.7"
version = "0.4.8"
edition = "2021"
authors = ["Artem Romanenia <artem.romanenia@gmail.com>"]
description = "Macro definitions of 'o2o' crate"
Expand All @@ -11,5 +11,5 @@ repository = "https://github.com/Artem-Romanenia/o2o"
proc-macro = true

[dependencies]
o2o-impl = { version = "0.4.7", path = "../o2o-impl" }
o2o-impl = { version = "0.4.8", path = "../o2o-impl" }
syn = "1.0.3"
4 changes: 2 additions & 2 deletions o2o-tests/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
[package]
name = "o2o-tests"
version = "0.4.7"
version = "0.4.8"
edition = "2021"
authors = ["Artem Romanenia <artem.romanenia@gmail.com>"]
description = "Tests for 'o2o' crate"
license = "MIT OR Apache-2.0"
repository = "https://github.com/Artem-Romanenia/o2o"

[dependencies]
o2o = { version = "0.4.7", path = "../" }
o2o = { version = "0.4.8", path = "../" }
anyhow = "1.0.86"

[dev-dependencies]
Expand Down

0 comments on commit 1b4be6e

Please sign in to comment.