From 321dd04d12ea4e4ae817d4a2e8c4a47066e68076 Mon Sep 17 00:00:00 2001 From: Robert Gauld Date: Sat, 19 Oct 2024 09:22:22 +0100 Subject: [PATCH] Release 0.1.1 --- Cargo.lock | 4 ++-- cmri/CHANGELOG.md | 12 ++++++++++++ cmri/Cargo.toml | 2 +- cmri_tools/Cargo.toml | 4 ++-- test_nodes/Cargo.toml | 4 ++-- 5 files changed, 19 insertions(+), 7 deletions(-) create mode 100644 cmri/CHANGELOG.md diff --git a/Cargo.lock b/Cargo.lock index 1b9529f..2c5d1af 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -836,7 +836,7 @@ dependencies = [ [[package]] name = "cmri" -version = "0.1.0" +version = "0.1.1" dependencies = [ "bitflags 2.6.0", "const_for", @@ -849,7 +849,7 @@ dependencies = [ [[package]] name = "cmri_tools" -version = "0.1.0" +version = "0.1.1" dependencies = [ "anyhow", "clap", diff --git a/cmri/CHANGELOG.md b/cmri/CHANGELOG.md new file mode 100644 index 0000000..fa6a827 --- /dev/null +++ b/cmri/CHANGELOG.md @@ -0,0 +1,12 @@ +# CMRI Changelog + +## 0.1.0 ⇒ 0.1.1 + +* Addition of more const functions: + * `NodeSort::try_new_smini` + * `NodeSort::try_new_cpnode` + * `NodeSort::try_new_cpmega` + * `CpnodeConfiguration::try_new` + * `CpmegaConfiguration::try_new` + * `SminiConfiguration::try_new` + * `SminiConfiguration::get_oscillating_pairs_count` diff --git a/cmri/Cargo.toml b/cmri/Cargo.toml index a8562ab..1d92648 100644 --- a/cmri/Cargo.toml +++ b/cmri/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "cmri" -version = "0.1.0" +version = "0.1.1" edition = "2021" rust-version = "1.81" description = "Pure-Rust decoding/encoding of packets for CMRInet" diff --git a/cmri_tools/Cargo.toml b/cmri_tools/Cargo.toml index 32e9f90..73af137 100644 --- a/cmri_tools/Cargo.toml +++ b/cmri_tools/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "cmri_tools" -version = "0.1.0" +version = "0.1.1" edition = "2021" rust-version = "1.81" description = "Tools for experimenting with CMRInet" @@ -15,7 +15,7 @@ resolver = "2" experimenter = ["cmri/experimenter"] [dependencies] -cmri = { version = "0.1.0", path = "../cmri", features = ["std", "serde"] } +cmri = { version = "0.1.1", path = "../cmri", features = ["std", "serde"] } tokio = { version = "1.39", features = ["tracing", "rt-multi-thread", "sync", "time", "net", "io-util", "macros"] } tokio-serial = "5.4" tracing = "0.1.40" diff --git a/test_nodes/Cargo.toml b/test_nodes/Cargo.toml index 1a02483..f55f6de 100644 --- a/test_nodes/Cargo.toml +++ b/test_nodes/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "test_nodes" -version = "0.1.0" +version = "0.1.1" edition = "2021" resolver = "2" @@ -20,7 +20,7 @@ embassy-time = { version = "0.3.1", features = ["defmt", "defmt-timestamp-uptime cortex-m = { version = "0.7.6" } embassy-rp = { version = "0.1.0", features = ["rt", "defmt", "intrinsics", "time-driver", "critical-section-impl"] } rand = { version = "0.8.5", default-features = false, features=["small_rng"] } -cmri = { path = "../cmri", default-features = false } +cmri = { version = "0.1.1", path = "../cmri", default-features = false } [lints.rust] missing_docs = "warn"