Skip to content

Commit

Permalink
Release 0.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
RobertGauld committed Oct 19, 2024
1 parent 7b99a13 commit 321dd04
Show file tree
Hide file tree
Showing 5 changed files with 19 additions and 7 deletions.
4 changes: 2 additions & 2 deletions Cargo.lock

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

12 changes: 12 additions & 0 deletions cmri/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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`
2 changes: 1 addition & 1 deletion cmri/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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"
Expand Down
4 changes: 2 additions & 2 deletions cmri_tools/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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"
Expand All @@ -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"
Expand Down
4 changes: 2 additions & 2 deletions test_nodes/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "test_nodes"
version = "0.1.0"
version = "0.1.1"
edition = "2021"
resolver = "2"

Expand All @@ -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"
Expand Down

0 comments on commit 321dd04

Please sign in to comment.