diff --git a/Cargo.lock b/Cargo.lock index c2af210..efe2db3 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -51,7 +51,7 @@ checksum = "7c02d123df017efcdfbd739ef81735b36c5ba83ec3c59c80a9d7ecc718f92e50" [[package]] name = "arvo" -version = "0.7.0" +version = "0.8.0" dependencies = [ "base64", "chrono", diff --git a/Cargo.toml b/Cargo.toml index 420f89b..7cf9a81 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "arvo" -version = "0.7.0" +version = "0.8.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 618ed54..8ac8f05 100644 --- a/README.md +++ b/README.md @@ -58,7 +58,7 @@ let email: EmailAddress = "user@example.com".try_into()?; ```toml [dependencies] -arvo = { version = "0.7", features = ["contact", "serde"] } +arvo = { version = "0.8", 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 78cac31..cb38040 100644 --- a/docs/contact.md +++ b/docs/contact.md @@ -4,7 +4,7 @@ Feature flag: `contact` ```toml [dependencies] -arvo = { version = "0.7", features = ["contact"] } +arvo = { version = "0.8", features = ["contact"] } ``` --- diff --git a/docs/finance.md b/docs/finance.md index 52758c0..6ccd2e3 100644 --- a/docs/finance.md +++ b/docs/finance.md @@ -4,7 +4,7 @@ Feature flag: `finance` ```toml [dependencies] -arvo = { version = "0.7", features = ["finance"] } +arvo = { version = "0.8", features = ["finance"] } ``` --- diff --git a/docs/geo.md b/docs/geo.md index ce933f2..510f49a 100644 --- a/docs/geo.md +++ b/docs/geo.md @@ -4,7 +4,7 @@ Feature flag: `geo` ```toml [dependencies] -arvo = { version = "0.7", features = ["geo"] } +arvo = { version = "0.8", features = ["geo"] } ``` --- diff --git a/docs/identifiers.md b/docs/identifiers.md index a373912..d16e1d9 100644 --- a/docs/identifiers.md +++ b/docs/identifiers.md @@ -4,7 +4,7 @@ Feature flag: `identifiers` ```toml [dependencies] -arvo = { version = "0.7", features = ["identifiers"] } +arvo = { version = "0.8", features = ["identifiers"] } ``` --- diff --git a/docs/primitives.md b/docs/primitives.md index 10b7cc5..e5ed933 100644 --- a/docs/primitives.md +++ b/docs/primitives.md @@ -4,7 +4,7 @@ Feature flag: `primitives` ```toml [dependencies] -arvo = { version = "0.7", features = ["primitives"] } +arvo = { version = "0.8", features = ["primitives"] } ``` --- diff --git a/docs/temporal.md b/docs/temporal.md index 18dda20..4238ad3 100644 --- a/docs/temporal.md +++ b/docs/temporal.md @@ -4,7 +4,7 @@ Feature flag: `temporal` ```toml [dependencies] -arvo = { version = "0.7", features = ["temporal"] } +arvo = { version = "0.8", features = ["temporal"] } ``` --- diff --git a/src/lib.rs b/src/lib.rs index 3f8b2f6..656fe77 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -12,7 +12,7 @@ //! //! ```toml //! [dependencies] -//! arvo = { version = "0.7", features = ["contact", "finance"] } +//! arvo = { version = "0.8", features = ["contact", "finance"] } //! ``` //! //! Available features: `contact`, `serde`, `full`.