Skip to content

Commit

Permalink
release 0.1000.0
Browse files Browse the repository at this point in the history
  • Loading branch information
mumbleskates committed Feb 4, 2024
1 parent 4ad85e7 commit fcd429c
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.999.0"
version = "0.1000.0"
authors = [
"Dan Burkert <dan@danburkert.com>",
"Lucio Franco <luciofranco14@gmail.com",
Expand Down Expand Up @@ -46,7 +46,7 @@ opaque = ["dep:btreemultimap"]
std = []

[dependencies]
bilrost-derive = { version = "0.999.0", path = "bilrost-derive", optional = true }
bilrost-derive = { version = "0.1000.0", path = "bilrost-derive", optional = true }
btreemultimap = { version = "0.1", optional = true }
bytes = { version = "1", default-features = false }
bytestring = { version = "1", 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.999.0"
version = "0.1000.0"
authors = [
"Dan Burkert <dan@danburkert.com>",
"Lucio Franco <luciofranco14@gmail.com>",
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.999.0")]
#![doc(html_root_url = "https://docs.rs/bilrost-derive/0.1000.0")]
// The `quote!` macro requires deep recursion.
#![recursion_limit = "4096"]

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.999.0"
version = "0.1000.0"
authors = [
"Dan Burkert <dan@danburkert.com>",
"Lucio Franco <luciofranco14@gmail.com",
Expand All @@ -24,10 +24,10 @@ serde_json = ["dep:serde_json"]
std = ["bilrost/std"]

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

[dev-dependencies]
bilrost = { version = "0.999.0", path = "..", default-features = false, features = ["derive", "opaque"] }
bilrost = { version = "0.1000.0", path = "..", default-features = false, features = ["derive", "opaque"] }
itertools = { version = ">=0.10, <0.13", default-features = false, features = ["use_alloc"] }
proptest = "1"
2 changes: 1 addition & 1 deletion bilrost-types/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-types/0.999.0")]
#![doc(html_root_url = "https://docs.rs/bilrost-types/0.1000.0")]

//! Analogs for protobuf well-known types.
//!
Expand Down
2 changes: 1 addition & 1 deletion 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/0.999.0")]
#![doc(html_root_url = "https://docs.rs/bilrost/0.1000.0")]
#![cfg_attr(not(feature = "std"), no_std)]
#![doc = include_str!("../README.md")]

Expand Down

0 comments on commit fcd429c

Please sign in to comment.