Skip to content

Commit

Permalink
release 0.1011.1
Browse files Browse the repository at this point in the history
  • Loading branch information
mumbleskates committed Jan 7, 2025
1 parent 608fb04 commit ec76d1b
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 9 deletions.
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "bilrost"
version = "0.1011.0"
version = "0.1011.1"
authors = [
"Kent Ross <[email protected]>",
"Dan Burkert <[email protected]>",
Expand Down Expand Up @@ -38,7 +38,7 @@ harness = false

[dependencies]
arrayvec = { version = ">=0.6", default-features = false, optional = true }
bilrost-derive = { version = "=0.1011.0", path = "bilrost-derive", optional = true }
bilrost-derive = { version = "=0.1011.1", path = "bilrost-derive", optional = true }
bstr = { version = ">=1", default-features = false, features = ["alloc"], optional = true }
bytes = { version = "1", default-features = false }
bytestring = { version = ">=1", default-features = false, optional = true }
Expand Down
2 changes: 1 addition & 1 deletion bilrost-derive/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "bilrost-derive"
version = "0.1011.0"
version = "0.1011.1"
authors = [
"Kent Ross <[email protected]>",
"Dan Burkert <[email protected]>",
Expand Down
2 changes: 1 addition & 1 deletion bilrost-derive/src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#![doc(html_root_url = "https://docs.rs/bilrost-derive/0.1011.0")]
#![doc(html_root_url = "https://docs.rs/bilrost-derive/0.1011.1")]
// The `quote!` macro requires deep recursion.
#![recursion_limit = "4096"]
#![no_std]
Expand Down
6 changes: 3 additions & 3 deletions bilrost-types/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "bilrost-types"
version = "0.1011.0"
version = "0.1011.1"
authors = [
"Kent Ross <[email protected]>",
"Dan Burkert <[email protected]>",
Expand All @@ -20,11 +20,11 @@ rust-version = "1.65"
doctest = false

[dependencies]
bilrost = { version = "=0.1011.0", path = "..", default-features = false, features = ["derive"] }
bilrost = { version = "=0.1011.1", path = "..", default-features = false, features = ["derive"] }
serde_json = { version = "1", default-features = false, features = ["alloc", "float_roundtrip"], optional = true }

[dev-dependencies]
bilrost = { version = "=0.1011.0", path = "..", default-features = false, features = ["derive"] }
bilrost = { version = "=0.1011.1", path = "..", default-features = false, features = ["derive"] }
proptest = "1"

[features]
Expand Down
2 changes: 1 addition & 1 deletion bilrost-types/src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#![no_std]
#![doc(html_root_url = "https://docs.rs/bilrost-types/0.1011.0")]
#![doc(html_root_url = "https://docs.rs/bilrost-types/0.1011.1")]

//! Analogs for protobuf well-known types, implemented alongside the
//! [`bilrost`][bilrost] crate. See that crate's documentation for details about the
Expand Down
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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.1011.0")]
#![doc(html_root_url = "https://docs.rs/bilrost/0.1011.1")]
#![no_std]
#![forbid(unsafe_op_in_unsafe_fn)]

Expand Down

0 comments on commit ec76d1b

Please sign in to comment.