diff --git a/CHANGELOG.md b/CHANGELOG.md index 74fb9e6..e159fac 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,7 +4,7 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). -## [Unreleased] +## [0.6.0] - 2024-08-28 ### Changed * Network stack is randomly seeded on startup so that random ports are used. @@ -24,7 +24,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 * Heavy network traffic no longer causes Booster to encounter watchdog resets or other spurious resets. -## [0.5.0] - 03-07-2023 +## [0.5.0] - 2023-07-03 ### Added * Support for different ethernet daughterboards using the ENC424J00 has been added. @@ -83,7 +83,8 @@ resets. ### Added * Output interlock threshold is now limited to a maximum of 47 dBm -[Unreleased]: https://github.com/quartiq/booster/compare/v0.5.0...HEAD +[Unreleased]: https://github.com/quartiq/booster/compare/v0.6.0...HEAD +[0.6.0]: https://github.com/quartiq/booster/compare/v0.5.0...v0.6.0 [0.5.0]: https://github.com/quartiq/booster/compare/v0.4.0...v0.5.0 [0.4.0]: https://github.com/quartiq/booster/compare/v0.3.0...v0.4.0 [0.3.0]: https://github.com/quartiq/booster/compare/v0.2.0...v0.3.0 diff --git a/Cargo.lock b/Cargo.lock index f3dd9ee..c94ba85 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -100,7 +100,7 @@ checksum = "ed570934406eb16438a4e976b1b4500774099c13b8cb96eec99f620f05090ddf" [[package]] name = "booster" -version = "0.5.0" +version = "0.6.0" dependencies = [ "ad5627", "ads7924", @@ -217,9 +217,9 @@ dependencies = [ [[package]] name = "cortex-m-rt" -version = "0.7.4" +version = "0.7.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2722f5b7d6ea8583cffa4d247044e280ccbb9fe501bed56552e2ba48b02d5f3d" +checksum = "ee84e813d593101b1723e13ec38b6ab6abbdbaaa4546553f5395ed274079ddb1" dependencies = [ "cortex-m-rt-macros", ] @@ -927,8 +927,9 @@ dependencies = [ [[package]] name = "minireq" -version = "0.4.0" -source = "git+https://github.com/quartiq/minireq#ab28a95aa40227e1f3cb32772bdf422e221cae6a" +version = "0.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a4ccb1b67c4fa24f360531cbf7e67d7ce6f1ba980431a7461ed741ed707a1beb" dependencies = [ "embedded-io", "heapless 0.8.0", diff --git a/Cargo.toml b/Cargo.toml index fb0269d..ec5ba9e 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "booster" # Keep versions in Cargo.toml and py/setup.py synchronized. -version = "0.5.0" +version = "0.6.0" resolver = "2" authors = [ "Ryan Summers ", @@ -57,7 +57,7 @@ miniconf_mqtt = "0.13" minimq = "0.9.0" w5500 = "0.5" smlang= "0.8" -minireq = {git = "https://github.com/quartiq/minireq"} +minireq = "0.5" rtt-target = "0.5" enum-iterator = { version = "2.1", default-features = false } enc424j600 = "0.4" diff --git a/py/pyproject.toml b/py/pyproject.toml index 5b0d2ee..aee7a1c 100644 --- a/py/pyproject.toml +++ b/py/pyproject.toml @@ -7,7 +7,7 @@ text = "MIT" [project] name = "booster" -version = "0.1.0" +version = "0.6.0" description = "Booster Utilities" authors = [ { name = "Ryan Summers", email = "ryan.summers@vertigo-designs.com" },