From e5c1cefc00810cf473e3a98e7cb4544762b546d9 Mon Sep 17 00:00:00 2001 From: Kent Ross Date: Sat, 18 May 2024 10:20:52 -0700 Subject: [PATCH] release 0.1008.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 bf2b7b6e..654efd15 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,4 @@ -## v0.1008.0-dev +## v0.1008.0 ### Breaking changes diff --git a/Cargo.toml b/Cargo.toml index 670e3040..7715a3c7 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bilrost" -version = "0.1008.0-dev" +version = "0.1008.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.1008.0-dev", path = "bilrost-derive", optional = true } +bilrost-derive = { version = "=0.1008.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 0f0dacd4..9fcee730 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.1008.0-dev" +bilrost = "0.1008" ``` 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.1008.0-dev", default-features = false, features = ["derive"] } +bilrost = { version = "0.1008", default-features = false, features = ["derive"] } ``` ### Derive macros diff --git a/bilrost-derive/Cargo.toml b/bilrost-derive/Cargo.toml index 906934de..af522da2 100644 --- a/bilrost-derive/Cargo.toml +++ b/bilrost-derive/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bilrost-derive" -version = "0.1008.0-dev" +version = "0.1008.0" authors = [ "Kent Ross ", "Dan Burkert ", diff --git a/bilrost-derive/src/lib.rs b/bilrost-derive/src/lib.rs index 61f0b735..e4c76640 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.1008.0-dev")] +#![doc(html_root_url = "https://docs.rs/bilrost-derive/0.1008.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 852bfcf9..b2e2e517 100644 --- a/bilrost-types/Cargo.toml +++ b/bilrost-types/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bilrost-types" -version = "0.1008.0-dev" +version = "0.1008.0" authors = [ "Kent Ross ", "Dan Burkert ", @@ -20,11 +20,11 @@ rust-version = "1.65" doctest = false [dependencies] -bilrost = { version = "=0.1008.0-dev", path = "..", default-features = false, features = ["derive"] } +bilrost = { version = "=0.1008.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.1008.0-dev", path = "..", default-features = false, features = ["derive"] } +bilrost = { version = "=0.1008.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 c124dc7c..d17cb4fa 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.1008.0-dev")] +#![doc(html_root_url = "https://docs.rs/bilrost-types/0.1008.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 11a86e1f..589bd179 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.1008.0-dev")] +#![doc(html_root_url = "https://docs.rs/bilrost/0.1008.0")] #![no_std] #![forbid(unsafe_op_in_unsafe_fn)]