diff --git a/yaserde/Cargo.toml b/yaserde/Cargo.toml index 9b489f1..5b811d0 100644 --- a/yaserde/Cargo.toml +++ b/yaserde/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "yaserde" -version = "0.1.0" +version = "0.2.0" authors = ["Marc-Antoine Arnaud "] description = "Serialization and deserialization library" keywords = ["Serialization", "Deserialization", "XML"] @@ -11,13 +11,13 @@ documentation = "https://docs.rs/yaserde" readme = "../README.md" [dependencies] -yaserde_derive = { version = "0.1", path = "../yaserde_derive", optional = true } +yaserde_derive = { version = "0.2", path = "../yaserde_derive", optional = true } regex = "0.2" xml-rs = "0.7.0" log = "0.4.1" [dev-dependencies] -yaserde_derive = { version = "0.1", path = "../yaserde_derive" } +yaserde_derive = { version = "0.2", path = "../yaserde_derive" } [badges] travis-ci = { repository = "media-io/yaserde" } diff --git a/yaserde_derive/Cargo.toml b/yaserde_derive/Cargo.toml index fc58dc0..220f625 100644 --- a/yaserde_derive/Cargo.toml +++ b/yaserde_derive/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "yaserde_derive" -version = "0.1.0" +version = "0.2.0" authors = ["Marc-Antoine Arnaud "] description = "Serialization and deserialization macros" keywords = ["Serialization", "Deserialization"]