From 1fafd281416232e56a92fd5581926faead9b7a78 Mon Sep 17 00:00:00 2001 From: Kent Ross Date: Sun, 14 Apr 2024 20:14:12 -0700 Subject: [PATCH] release 0.1006.0 --- CHANGELOG.md | 2 +- Cargo.toml | 4 ++-- README.md | 4 ++-- bilrost-derive/Cargo.toml | 2 +- bilrost-derive/src/lib.rs | 2 +- bilrost-types/Cargo.toml | 6 +++--- bilrost-types/src/lib.rs | 2 +- src/lib.rs | 2 +- 8 files changed, 12 insertions(+), 12 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index b9fb7c2a..5b376b32 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,4 @@ -## v0.1006.0-dev +## v0.1006.0 ### Breaking changes diff --git a/Cargo.toml b/Cargo.toml index 9ed25e3f..4212665d 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bilrost" -version = "0.1006.0-dev" +version = "0.1006.0" authors = [ "Kent Ross ", "Dan Burkert ", @@ -97,7 +97,7 @@ pprof = ["dep:pprof"] [dependencies] arrayvec = { version = ">=0.6", default-features = false, optional = true } -bilrost-derive = { version = "=0.1006.0-dev", path = "bilrost-derive", optional = true } +bilrost-derive = { version = "=0.1006.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 53ae4f73..131f423d 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.1006.0-dev" +bilrost = "0.1006" ``` Then, we derive `bilrost::Message` for our struct type: @@ -465,7 +465,7 @@ To enable `no_std` support, disable the `std` features in `bilrost` (and ```toml [dependencies] -bilrost = { version = "0.1006.0-dev", default-features = false, features = ["derive"] } +bilrost = { version = "0.1006", default-features = false, features = ["derive"] } ``` ### Derive macros diff --git a/bilrost-derive/Cargo.toml b/bilrost-derive/Cargo.toml index e31558ce..dd629f7e 100644 --- a/bilrost-derive/Cargo.toml +++ b/bilrost-derive/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bilrost-derive" -version = "0.1006.0-dev" +version = "0.1006.0" authors = [ "Kent Ross ", "Dan Burkert ", diff --git a/bilrost-derive/src/lib.rs b/bilrost-derive/src/lib.rs index 2b04acd4..9b9ddfe4 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.1006.0-dev")] +#![doc(html_root_url = "https://docs.rs/bilrost-derive/0.1006.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 f1b977f6..3c6ad897 100644 --- a/bilrost-types/Cargo.toml +++ b/bilrost-types/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bilrost-types" -version = "0.1006.0-dev" +version = "0.1006.0" authors = [ "Kent Ross ", "Dan Burkert ", @@ -25,10 +25,10 @@ serde_json = ["dep:serde_json"] std = ["bilrost/std"] [dependencies] -bilrost = { version = "=0.1006.0-dev", path = "..", default-features = false, features = ["derive"] } +bilrost = { version = "=0.1006.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.1006.0-dev", path = "..", default-features = false, features = ["derive", "opaque"] } +bilrost = { version = "=0.1006.0", path = "..", default-features = false, features = ["derive", "opaque"] } 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 c842eb66..fcb20d04 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.1006.0-dev")] +#![doc(html_root_url = "https://docs.rs/bilrost-types/0.1006.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 31e8a70c..fe09b1fa 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.1006.0-dev")] +#![doc(html_root_url = "https://docs.rs/bilrost/0.1006.0")] #![no_std] extern crate alloc;