Skip to content

Commit

Permalink
Bump crate versions to 0.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
slowli committed Aug 7, 2024
1 parent 9cf7c94 commit e3ad32e
Show file tree
Hide file tree
Showing 9 changed files with 12 additions and 12 deletions.
8 changes: 4 additions & 4 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ members = [
resolver = "2"

[workspace.package]
version = "0.1.0"
version = "0.1.1"
edition = "2021"
rust-version = "1.70.0"
authors = ["The Matter Labs Team <[email protected]>"]
Expand Down
2 changes: 1 addition & 1 deletion crates/vise-exporter/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ all-features = true
rustdoc-args = ["--cfg", "docsrs"]

[dependencies]
vise = { version = "0.1.0", path = "../vise" }
vise = { version = "0.1.1", path = "../vise" }

hyper.workspace = true
metrics-exporter-prometheus = { workspace = true, optional = true }
Expand Down
2 changes: 1 addition & 1 deletion crates/vise-exporter/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ Add this to your Crate.toml:

```toml
[dependencies]
vise-exporter = "0.1.0"
vise-exporter = "0.1.1"
```

An exporter can be initialized from a metrics `Registry`:
Expand Down
2 changes: 1 addition & 1 deletion crates/vise-exporter/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@
//! ```
// Documentation settings.
#![doc(html_root_url = "https://docs.rs/vise-exporter/0.1.0")]
#![doc(html_root_url = "https://docs.rs/vise-exporter/0.1.1")]
#![cfg_attr(docsrs, feature(doc_cfg))]
// Linter settings.
#![warn(missing_debug_implementations, missing_docs, bare_trait_objects)]
Expand Down
2 changes: 1 addition & 1 deletion crates/vise-macros/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
//! [`vise`]: https://docs.rs/vise/
// Documentation settings.
#![doc(html_root_url = "https://docs.rs/vise-macros/0.1.0")]
#![doc(html_root_url = "https://docs.rs/vise-macros/0.1.1")]
// General settings.
#![recursion_limit = "128"]
// Linter settings.
Expand Down
2 changes: 1 addition & 1 deletion crates/vise/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ keywords.workspace = true
categories.workspace = true

[dependencies]
vise-macros = { version = "0.1.0", path = "../vise-macros" }
vise-macros = { version = "=0.1.1", path = "../vise-macros" }

compile-fmt.workspace = true
elsa.workspace = true
Expand Down
2 changes: 1 addition & 1 deletion crates/vise/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ Add this to your Crate.toml:

```toml
[dependencies]
vise = "0.1.0"
vise = "0.1.1"
```

### Defining and reporting metrics
Expand Down
2 changes: 1 addition & 1 deletion crates/vise/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@
//! ```
// Documentation settings.
#![doc(html_root_url = "https://docs.rs/vise/0.1.0")]
#![doc(html_root_url = "https://docs.rs/vise/0.1.1")]
// Linter settings.
#![warn(missing_debug_implementations, missing_docs, bare_trait_objects)]
#![warn(clippy::all, clippy::pedantic)]
Expand Down

0 comments on commit e3ad32e

Please sign in to comment.