diff --git a/Cargo.lock b/Cargo.lock index efe2db3..9e24c40 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -51,7 +51,7 @@ checksum = "7c02d123df017efcdfbd739ef81735b36c5ba83ec3c59c80a9d7ecc718f92e50" [[package]] name = "arvo" -version = "0.8.0" +version = "0.9.0" dependencies = [ "base64", "chrono", diff --git a/Cargo.toml b/Cargo.toml index 0b27881..cce2acb 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "arvo" -version = "0.8.0" +version = "0.9.0" license = "MIT" description = "Validated, immutable value objects for common domain types (email, money, identifiers, …)" authors = ["Codegress "] diff --git a/README.md b/README.md index 9a4535a..7fdceae 100644 --- a/README.md +++ b/README.md @@ -59,7 +59,7 @@ let email: EmailAddress = "user@example.com".try_into()?; ```toml [dependencies] -arvo = { version = "0.8", features = ["contact", "serde"] } +arvo = { version = "0.9", features = ["contact", "serde"] } ``` Enable only the modules you need — unused features add zero dependencies. diff --git a/docs/contact.md b/docs/contact.md index cb38040..1700c1a 100644 --- a/docs/contact.md +++ b/docs/contact.md @@ -4,7 +4,7 @@ Feature flag: `contact` ```toml [dependencies] -arvo = { version = "0.8", features = ["contact"] } +arvo = { version = "0.9", features = ["contact"] } ``` --- diff --git a/docs/finance.md b/docs/finance.md index 6ccd2e3..8c9f37c 100644 --- a/docs/finance.md +++ b/docs/finance.md @@ -4,7 +4,7 @@ Feature flag: `finance` ```toml [dependencies] -arvo = { version = "0.8", features = ["finance"] } +arvo = { version = "0.9", features = ["finance"] } ``` --- diff --git a/docs/geo.md b/docs/geo.md index 510f49a..415ff20 100644 --- a/docs/geo.md +++ b/docs/geo.md @@ -4,7 +4,7 @@ Feature flag: `geo` ```toml [dependencies] -arvo = { version = "0.8", features = ["geo"] } +arvo = { version = "0.9", features = ["geo"] } ``` --- diff --git a/docs/identifiers.md b/docs/identifiers.md index d16e1d9..f4513c7 100644 --- a/docs/identifiers.md +++ b/docs/identifiers.md @@ -4,7 +4,7 @@ Feature flag: `identifiers` ```toml [dependencies] -arvo = { version = "0.8", features = ["identifiers"] } +arvo = { version = "0.9", features = ["identifiers"] } ``` --- diff --git a/docs/net.md b/docs/net.md index 0505aaa..4785a0f 100644 --- a/docs/net.md +++ b/docs/net.md @@ -4,7 +4,7 @@ Feature flag: `net` ```toml [dependencies] -arvo = { version = "0.8", features = ["net"] } +arvo = { version = "0.9", features = ["net"] } ``` --- diff --git a/docs/primitives.md b/docs/primitives.md index e5ed933..d8c560c 100644 --- a/docs/primitives.md +++ b/docs/primitives.md @@ -4,7 +4,7 @@ Feature flag: `primitives` ```toml [dependencies] -arvo = { version = "0.8", features = ["primitives"] } +arvo = { version = "0.9", features = ["primitives"] } ``` --- diff --git a/docs/temporal.md b/docs/temporal.md index 4238ad3..2a3240a 100644 --- a/docs/temporal.md +++ b/docs/temporal.md @@ -4,7 +4,7 @@ Feature flag: `temporal` ```toml [dependencies] -arvo = { version = "0.8", features = ["temporal"] } +arvo = { version = "0.9", features = ["temporal"] } ``` --- diff --git a/src/lib.rs b/src/lib.rs index 2b76996..aa599a3 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -12,7 +12,7 @@ //! //! ```toml //! [dependencies] -//! arvo = { version = "0.8", features = ["contact", "finance"] } +//! arvo = { version = "0.9", features = ["contact", "finance"] } //! ``` //! //! Available features: `contact`, `serde`, `full`.