diff --git a/CHANGELOG.md b/CHANGELOG.md index fc794fe3..f66b9150 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,4 @@ -## v0.1009.0-dev +## v0.1009.0 ### New features diff --git a/Cargo.toml b/Cargo.toml index 20201e59..3c7971f5 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bilrost" -version = "0.1009.0-dev" +version = "0.1009.0" authors = [ "Kent Ross ", "Dan Burkert ", @@ -38,7 +38,7 @@ harness = false [dependencies] arrayvec = { version = ">=0.6", default-features = false, optional = true } -bilrost-derive = { version = "=0.1009.0-dev", path = "bilrost-derive", optional = true } +bilrost-derive = { version = "=0.1009.0", path = "bilrost-derive", optional = true } bytes = { version = "1", default-features = false } bytestring = { version = ">=1", default-features = false, optional = true } const_panic = { version = "0.2", default-features = false, features = ["non_basic"], optional = true } diff --git a/README.md b/README.md index 3b87e83c..f33977f7 100644 --- a/README.md +++ b/README.md @@ -364,7 +364,7 @@ To use `bilrost`, we first add it as a dependency in `Cargo.toml`, either with `cargo add bilrost` or manually: ```toml -bilrost = "0.1009.0-dev" +bilrost = "0.1009" ``` Then, we derive `bilrost::Message` for our struct type: @@ -466,7 +466,7 @@ To enable `no_std` support, disable the `std` features in `bilrost` (and ```toml [dependencies] -bilrost = { version = "0.1009.0-dev", default-features = false, features = ["derive"] } +bilrost = { version = "0.1009", default-features = false, features = ["derive"] } ``` ### Derive macros diff --git a/bilrost-derive/Cargo.toml b/bilrost-derive/Cargo.toml index 6c700d86..ceeb6f6d 100644 --- a/bilrost-derive/Cargo.toml +++ b/bilrost-derive/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bilrost-derive" -version = "0.1009.0-dev" +version = "0.1009.0" authors = [ "Kent Ross ", "Dan Burkert ", diff --git a/bilrost-derive/src/lib.rs b/bilrost-derive/src/lib.rs index 656cea35..18c86840 100644 --- a/bilrost-derive/src/lib.rs +++ b/bilrost-derive/src/lib.rs @@ -1,4 +1,4 @@ -#![doc(html_root_url = "https://docs.rs/bilrost-derive/0.1009.0-dev")] +#![doc(html_root_url = "https://docs.rs/bilrost-derive/0.1009.0")] // The `quote!` macro requires deep recursion. #![recursion_limit = "4096"] #![no_std] diff --git a/bilrost-types/Cargo.toml b/bilrost-types/Cargo.toml index b464e50d..f24c975c 100644 --- a/bilrost-types/Cargo.toml +++ b/bilrost-types/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bilrost-types" -version = "0.1009.0-dev" +version = "0.1009.0" authors = [ "Kent Ross ", "Dan Burkert ", @@ -20,11 +20,11 @@ rust-version = "1.65" doctest = false [dependencies] -bilrost = { version = "=0.1009.0-dev", path = "..", default-features = false, features = ["derive"] } +bilrost = { version = "=0.1009.0", path = "..", default-features = false, features = ["derive"] } serde_json = { version = "1", default-features = false, features = ["alloc", "float_roundtrip"], optional = true } [dev-dependencies] -bilrost = { version = "=0.1009.0-dev", path = "..", default-features = false, features = ["derive"] } +bilrost = { version = "=0.1009.0", path = "..", default-features = false, features = ["derive"] } itertools = { version = ">=0.10, <0.13", default-features = false, features = ["use_alloc"] } proptest = "1" diff --git a/bilrost-types/src/lib.rs b/bilrost-types/src/lib.rs index 0aa7cc7e..5c0306d2 100644 --- a/bilrost-types/src/lib.rs +++ b/bilrost-types/src/lib.rs @@ -1,5 +1,5 @@ #![no_std] -#![doc(html_root_url = "https://docs.rs/bilrost-types/0.1009.0-dev")] +#![doc(html_root_url = "https://docs.rs/bilrost-types/0.1009.0")] //! Analogs for protobuf well-known types, implemented alongside the //! [`bilrost`][bilrost] crate. See that crate's documentation for details about the diff --git a/src/lib.rs b/src/lib.rs index aa3d3bd4..6a39afae 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -2,7 +2,7 @@ #![doc( html_logo_url = "https://raw.githubusercontent.com/mumbleskates/bilrost/bilrost/logo/bilrost256.jpg" )] -#![doc(html_root_url = "https://docs.rs/bilrost/0.1009.0-dev")] +#![doc(html_root_url = "https://docs.rs/bilrost/0.1009.0")] #![no_std] #![forbid(unsafe_op_in_unsafe_fn)]