Skip to content

Commit

Permalink
bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
benmaddison committed May 14, 2024
1 parent e128530 commit 2ee917e
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 11 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.

6 changes: 3 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ members = ["lib", "cli", "junos-agent", "netconf"]
resolver = "2"

[workspace.package]
version = "0.1.0-rc.2"
version = "0.1.0"
edition = "2021"
rust-version = "1.75"
authors = ["Ben Maddison <[email protected]>"]
Expand All @@ -16,8 +16,8 @@ categories = ["network-programming", "database"]

[workspace.dependencies]
# internal
bgpfu-lib = { path = "./lib", version = "0.1.0-alpha.2" }
bgpfu-netconf = { path = "./netconf", version = "0.1.0-alpha.2", default-features = false }
bgpfu-lib = { path = "./lib", version = "0.1.0" }
bgpfu-netconf = { path = "./netconf", version = "0.1.0", default-features = false }
# external
anyhow = "^1.0"
async-trait = "^0.1"
Expand Down
2 changes: 1 addition & 1 deletion cli/src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
//! Support library for `bgpfu-cli`.
#![doc(html_root_url = "https://docs.rs/bgpfu-cli/0.1.0-rc.2")]
#![doc(html_root_url = "https://docs.rs/bgpfu-cli/0.1.0")]
// clippy lints
#![warn(clippy::pedantic)]
#![warn(clippy::cargo)]
Expand Down
2 changes: 1 addition & 1 deletion junos-agent/src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
//! Support library for `bgpfu-junos-agent`.
#![doc(html_root_url = "https://docs.rs/bgpfu-junos-agent/0.1.0-rc.2")]
#![doc(html_root_url = "https://docs.rs/bgpfu-junos-agent/0.1.0")]
// clippy lints
#![warn(clippy::pedantic)]
#![warn(clippy::cargo)]
Expand Down
2 changes: 1 addition & 1 deletion lib/src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
//! Support library for `bgpfu`.
#![doc(html_root_url = "https://docs.rs/bgpfu-lib/0.1.0-rc.2")]
#![doc(html_root_url = "https://docs.rs/bgpfu-lib/0.1.0")]
// clippy lints
#![warn(clippy::pedantic)]
#![warn(clippy::cargo)]
Expand Down
2 changes: 1 addition & 1 deletion netconf/src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
//! Netconf client library
#![doc(html_root_url = "https://docs.rs/bgpfu-netconf/0.1.0-rc.2")]
#![doc(html_root_url = "https://docs.rs/bgpfu-netconf/0.1.0")]
// clippy lints
#![warn(clippy::pedantic)]
#![warn(clippy::cargo)]
Expand Down

0 comments on commit 2ee917e

Please sign in to comment.