diff --git a/Cargo.lock b/Cargo.lock index 322db94786..6815de9a37 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1693,7 +1693,7 @@ checksum = "bd7a31eed1591dcbc95d92ad7161908e72f4677f8fabf2a32ca49b4237cbf211" [[package]] name = "r3" -version = "0.2.0" +version = "0.2.1" dependencies = [ "embed-doc-image", "macropol", @@ -1706,7 +1706,7 @@ dependencies = [ [[package]] name = "r3_core" -version = "0.1.0" +version = "0.1.1" dependencies = [ "arrayvec", "bitflags", @@ -1818,7 +1818,7 @@ dependencies = [ [[package]] name = "r3_kernel" -version = "0.1.0" +version = "0.1.1" dependencies = [ "arrayvec", "bitflags", @@ -1839,7 +1839,7 @@ dependencies = [ [[package]] name = "r3_port_arm" -version = "0.2.0" +version = "0.2.1" dependencies = [ "macropol", "memoffset", @@ -1852,9 +1852,9 @@ dependencies = [ [[package]] name = "r3_port_arm_m" -version = "0.3.0" +version = "0.3.1" dependencies = [ - "cortex-m 0.7.4", + "cortex-m 0.6.7", "cortex-m-rt", "memoffset", "r3_core", @@ -1900,7 +1900,7 @@ dependencies = [ [[package]] name = "r3_port_riscv" -version = "0.2.0" +version = "0.2.1" dependencies = [ "r3_core", "r3_kernel", @@ -1935,7 +1935,7 @@ dependencies = [ [[package]] name = "r3_port_std" -version = "0.2.0" +version = "0.2.1" dependencies = [ "atomic_ref", "env_logger", @@ -1955,7 +1955,7 @@ dependencies = [ [[package]] name = "r3_portkit" -version = "0.2.0" +version = "0.2.1" dependencies = [ "env_logger", "itertools", @@ -1971,7 +1971,7 @@ dependencies = [ [[package]] name = "r3_support_rp2040" -version = "0.2.0" +version = "0.2.1" dependencies = [ "cortex-m 0.7.4", "embedded-hal", @@ -1988,7 +1988,7 @@ dependencies = [ [[package]] name = "r3_support_rza1" -version = "0.2.0" +version = "0.2.1" dependencies = [ "embedded-hal", "nb 1.0.0", diff --git a/src/r3/CHANGELOG.md b/src/r3/CHANGELOG.md index 0cb0585218..29a02ba77e 100644 --- a/src/r3/CHANGELOG.md +++ b/src/r3/CHANGELOG.md @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0. ## [Unreleased] +## [0.2.1] - 2022-03-19 + ### Fixed - Upgrade `svgbobdoc` to `^0.3.0` to fix build failures in documentation build @@ -67,7 +69,8 @@ This release only includes changes to the documentation. Initial release. -[Unreleased]: https://github.com/r3-os/r3/compare/r3@0.2.0...HEAD +[Unreleased]: https://github.com/r3-os/r3/compare/r3@0.2.1...HEAD +[0.2.1]: https://github.com/r3-os/r3/compare/r3@0.2.0...r3@0.2.1 [0.2.0]: https://github.com/r3-os/r3/compare/r3@0.1.3...r3@0.2.0 [0.1.3]: https://github.com/r3-os/r3/compare/r3@0.1.2...r3@0.1.3 [0.1.2]: https://github.com/r3-os/r3/compare/r3@0.1.1...r3@0.1.2 diff --git a/src/r3/Cargo.toml b/src/r3/Cargo.toml index 6de900a8c4..dffbb8aa47 100644 --- a/src/r3/Cargo.toml +++ b/src/r3/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "r3" -version = "0.2.0" +version = "0.2.1" edition = "2021" license = "MIT OR Apache-2.0" readme = "README.md" diff --git a/src/r3_core/CHANGELOG.md b/src/r3_core/CHANGELOG.md index 26d9108e1e..e2a76e1ea6 100644 --- a/src/r3_core/CHANGELOG.md +++ b/src/r3_core/CHANGELOG.md @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0. ## [Unreleased] +## [0.1.1] - 2022-03-19 + ### Fixed - Upgrade `svgbobdoc` to `^0.3.0` to fix build failures in documentation build @@ -16,4 +18,5 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0. Initial release. -[Unreleased]: https://github.com/r3-os/r3/compare/r3_core@0.1.0...HEAD +[Unreleased]: https://github.com/r3-os/r3/compare/r3_core@0.1.1...HEAD +[0.1.1]: https://github.com/r3-os/r3/compare/r3_core@0.1.0...r3@0.1.1 diff --git a/src/r3_core/Cargo.toml b/src/r3_core/Cargo.toml index 29acdc51f8..f049c8c5ef 100644 --- a/src/r3_core/Cargo.toml +++ b/src/r3_core/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "r3_core" -version = "0.1.0" +version = "0.1.1" edition = "2021" license = "MIT OR Apache-2.0" description = "R3-OS API definition" diff --git a/src/r3_kernel/CHANGELOG.md b/src/r3_kernel/CHANGELOG.md index de382e9119..5430a04773 100644 --- a/src/r3_kernel/CHANGELOG.md +++ b/src/r3_kernel/CHANGELOG.md @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0. ## [Unreleased] +## [0.1.1] - 2022-03-19 + ### Fixed - Upgrade `svgbobdoc` to `^0.3.0` to fix build failures in documentation build @@ -16,4 +18,5 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0. Initial release. Supports `r3_core ^0.1`. -[Unreleased]: https://github.com/r3-os/r3/compare/r3_kernel@0.1.0...HEAD +[Unreleased]: https://github.com/r3-os/r3/compare/r3_kernel@0.1.1...HEAD +[0.1.1]: https://github.com/r3-os/r3/compare/r3_kernel@0.1.0...r3@0.1.1 diff --git a/src/r3_kernel/Cargo.toml b/src/r3_kernel/Cargo.toml index a2330e7e7e..1e8fdbc956 100644 --- a/src/r3_kernel/Cargo.toml +++ b/src/r3_kernel/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "r3_kernel" -version = "0.1.0" +version = "0.1.1" edition = "2021" license = "MIT OR Apache-2.0" description = "The R3-OS original kernel" diff --git a/src/r3_port_arm/CHANGELOG.md b/src/r3_port_arm/CHANGELOG.md index c39646c954..81cefbe3cb 100644 --- a/src/r3_port_arm/CHANGELOG.md +++ b/src/r3_port_arm/CHANGELOG.md @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0. ## [Unreleased] +## [0.2.1] - 2022-03-19 + ### Fixed - Improve rustdoc theme detection on docs.rs @@ -42,7 +44,8 @@ This release only includes changes to the documentation. Initial release. -[Unreleased]: https://github.com/r3-os/r3/compare/r3_port_arm@0.2.0...HEAD +[Unreleased]: https://github.com/r3-os/r3/compare/r3_port_arm@0.2.1...HEAD +[0.2.1]: https://github.com/r3-os/r3/compare/r3_port_arm@0.2.0...r3_port_arm@0.2.1 [0.2.0]: https://github.com/r3-os/r3/compare/r3_port_arm@0.1.2...r3_port_arm@0.2.0 [0.1.2]: https://github.com/r3-os/r3/compare/r3_port_arm@0.1.1...r3_port_arm@0.1.2 [0.1.1]: https://github.com/r3-os/r3/compare/r3_port_arm@0.1.0...r3_port_arm@0.1.1 diff --git a/src/r3_port_arm/Cargo.toml b/src/r3_port_arm/Cargo.toml index d791029b8d..4c76d39ad9 100644 --- a/src/r3_port_arm/Cargo.toml +++ b/src/r3_port_arm/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "r3_port_arm" -version = "0.2.0" +version = "0.2.1" edition = "2021" license = "MIT OR Apache-2.0" description = "Armv7-A port for the R3-OS original kernel" diff --git a/src/r3_port_arm_m/CHANGELOG.md b/src/r3_port_arm_m/CHANGELOG.md index 60b0b7ab5c..a3929afa20 100644 --- a/src/r3_port_arm_m/CHANGELOG.md +++ b/src/r3_port_arm_m/CHANGELOG.md @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0. ## [Unreleased] +## [0.3.1] - 2022-03-19 + ### Fixed - Improve rustdoc theme detection on docs.rs @@ -45,7 +47,8 @@ This release only includes changes to the documentation. Initial release. -[Unreleased]: https://github.com/r3-os/r3/compare/r3_port_arm_m@0.3.0...HEAD +[Unreleased]: https://github.com/r3-os/r3/compare/r3_port_arm_m@0.3.1...HEAD +[0.3.1]: https://github.com/r3-os/r3/compare/r3_port_arm_m@0.3.0...r3_port_arm_m@0.3.1 [0.3.0]: https://github.com/r3-os/r3/compare/r3_port_arm_m@0.2.1...r3_port_arm_m@0.3.0 [0.2.1]: https://github.com/r3-os/r3/compare/r3_port_arm_m@0.2.0...r3_port_arm_m@0.2.1 [0.2.0]: https://github.com/r3-os/r3/compare/r3_port_arm_m@0.1.1...r3_port_arm_m@0.2.0 diff --git a/src/r3_port_arm_m/Cargo.toml b/src/r3_port_arm_m/Cargo.toml index 0931812f7e..9808529525 100644 --- a/src/r3_port_arm_m/Cargo.toml +++ b/src/r3_port_arm_m/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "r3_port_arm_m" -version = "0.3.0" +version = "0.3.1" edition = "2021" license = "MIT OR Apache-2.0" description = "Cortex-M port for the R3-OS original kernel" diff --git a/src/r3_port_riscv/CHANGELOG.md b/src/r3_port_riscv/CHANGELOG.md index 7d425fc429..9c909e946c 100644 --- a/src/r3_port_riscv/CHANGELOG.md +++ b/src/r3_port_riscv/CHANGELOG.md @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0. ## [Unreleased] +## [0.2.1] - 2022-03-19 + ### Fixed - Upgrade `svgbobdoc` to `^0.3.0` to fix build failures in documentation build @@ -62,7 +64,8 @@ This release only includes changes to the documentation. Initial release. -[Unreleased]: https://github.com/r3-os/r3/compare/r3_port_riscv@0.2.0...HEAD +[Unreleased]: https://github.com/r3-os/r3/compare/r3_port_riscv@0.2.1...HEAD +[0.2.1]: https://github.com/r3-os/r3/compare/r3_port_riscv@0.2.0...r3_port_riscv@0.2.1 [0.2.0]: https://github.com/r3-os/r3/compare/r3_port_riscv@0.1.3...r3_port_riscv@0.2.0 [0.1.3]: https://github.com/r3-os/r3/compare/r3_port_riscv@0.1.2...r3_port_riscv@0.1.3 [0.1.2]: https://github.com/r3-os/r3/compare/r3_port_riscv@0.1.1...r3_port_riscv@0.1.2 diff --git a/src/r3_port_riscv/Cargo.toml b/src/r3_port_riscv/Cargo.toml index ef84fc873f..df17ef03be 100644 --- a/src/r3_port_riscv/Cargo.toml +++ b/src/r3_port_riscv/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "r3_port_riscv" -version = "0.2.0" +version = "0.2.1" edition = "2021" license = "MIT OR Apache-2.0" description = "RISC-V port for the R3-OS original kernel" diff --git a/src/r3_port_std/CHANGELOG.md b/src/r3_port_std/CHANGELOG.md index 01b0aaca70..bfdb35c740 100644 --- a/src/r3_port_std/CHANGELOG.md +++ b/src/r3_port_std/CHANGELOG.md @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0. ## [Unreleased] +## [0.2.1] - 2022-03-19 + ### Fixed - Improve rustdoc theme detection on docs.rs @@ -41,7 +43,8 @@ This release only includes minor changes to the documentation and internal imple Initial release. -[Unreleased]: https://github.com/r3-os/r3/compare/r3_port_std@0.2.0...HEAD +[Unreleased]: https://github.com/r3-os/r3/compare/r3_port_std@0.2.1...HEAD +[0.2.1]: https://github.com/r3-os/r3/compare/r3_port_std@0.2.0...r3_port_std@0.2.1 [0.2.0]: https://github.com/r3-os/r3/compare/r3_port_std@0.1.3...r3_port_std@0.2.0 [0.1.3]: https://github.com/r3-os/r3/compare/r3_port_std@0.1.2...r3_port_std@0.1.3 [0.1.2]: https://github.com/r3-os/r3/compare/r3_port_std@0.1.1...r3_port_std@0.1.2 diff --git a/src/r3_port_std/Cargo.toml b/src/r3_port_std/Cargo.toml index 441411826d..8d2c695015 100644 --- a/src/r3_port_std/Cargo.toml +++ b/src/r3_port_std/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "r3_port_std" -version = "0.2.0" +version = "0.2.1" edition = "2021" license = "MIT OR Apache-2.0" description = "Simulator port for the R3-OS original kernel" diff --git a/src/r3_portkit/CHANGELOG.md b/src/r3_portkit/CHANGELOG.md index 962cc8018d..d4320650cc 100644 --- a/src/r3_portkit/CHANGELOG.md +++ b/src/r3_portkit/CHANGELOG.md @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0. ## [Unreleased] +## [0.2.1] - 2022-03-19 + ### Fixed - Upgrade `svgbobdoc` to `^0.3.0` to fix build failures in documentation build @@ -43,7 +45,8 @@ This release only includes changes to the documentation. Initial release. -[Unreleased]: https://github.com/r3-os/r3/compare/r3_portkit@0.2.0...HEAD +[Unreleased]: https://github.com/r3-os/r3/compare/r3_portkit@0.2.1...HEAD +[0.2.1]: https://github.com/r3-os/r3/compare/r3_portkit@0.2.0...r3_portkit@0.2.1 [0.2.0]: https://github.com/r3-os/r3/compare/r3_portkit@0.1.3...r3_portkit@0.2.0 [0.1.3]: https://github.com/r3-os/r3/compare/r3_portkit@0.1.2...r3_portkit@0.1.3 [0.1.2]: https://github.com/r3-os/r3/compare/r3_portkit@0.1.1...r3_portkit@0.1.2 diff --git a/src/r3_portkit/Cargo.toml b/src/r3_portkit/Cargo.toml index 83b90b7e97..ff1f9e0497 100644 --- a/src/r3_portkit/Cargo.toml +++ b/src/r3_portkit/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "r3_portkit" -version = "0.2.0" +version = "0.2.1" edition = "2021" license = "MIT OR Apache-2.0" description = "Utilities for writing a port of R3" diff --git a/src/r3_support_rp2040/CHANGELOG.md b/src/r3_support_rp2040/CHANGELOG.md index 835ed8251f..bed4d24cee 100644 --- a/src/r3_support_rp2040/CHANGELOG.md +++ b/src/r3_support_rp2040/CHANGELOG.md @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0. ## [Unreleased] +## [0.2.1] - 2022-03-19 + ### Fixed - Improve rustdoc theme detection on docs.rs @@ -26,6 +28,7 @@ This release only includes changes to the documentation. Initial release. -[Unreleased]: https://github.com/r3-os/r3/compare/r3_support_rp2040@0.2.0...HEAD +[Unreleased]: https://github.com/r3-os/r3/compare/r3_support_rp2040@0.2.1...HEAD +[0.2.1]: https://github.com/r3-os/r3/compare/r3_support_rp2040@0.2.0...r3_support_rp2040@0.2.1 [0.2.0]: https://github.com/r3-os/r3/compare/r3_support_rp2040@0.1.1...r3_support_rp2040@0.2.0 [0.1.1]: https://github.com/r3-os/r3/compare/r3_support_rp2040@0.1.0...r3_support_rp2040@0.1.1 diff --git a/src/r3_support_rp2040/Cargo.toml b/src/r3_support_rp2040/Cargo.toml index 8d823527f1..4b8671546a 100644 --- a/src/r3_support_rp2040/Cargo.toml +++ b/src/r3_support_rp2040/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "r3_support_rp2040" -version = "0.2.0" +version = "0.2.1" edition = "2021" license = "MIT OR Apache-2.0" description = "Supporting package for running R3-OS on RP2040" diff --git a/src/r3_support_rza1/CHANGELOG.md b/src/r3_support_rza1/CHANGELOG.md index 613940837c..48e91b9b9d 100644 --- a/src/r3_support_rza1/CHANGELOG.md +++ b/src/r3_support_rza1/CHANGELOG.md @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0. ## [Unreleased] +## [0.2.1] - 2022-03-19 + ### Fixed - Improve rustdoc theme detection on docs.rs @@ -31,7 +33,8 @@ This release only includes changes to the documentation. Initial release. -[Unreleased]: https://github.com/r3-os/r3/compare/r3_support_rza1@0.2.0...HEAD +[Unreleased]: https://github.com/r3-os/r3/compare/r3_support_rza1@0.2.1...HEAD +[0.2.1]: https://github.com/r3-os/r3/compare/r3_support_rza1@0.2.0...r3_support_rza1@0.2.1 [0.2.0]: https://github.com/r3-os/r3/compare/r3_support_rza1@0.1.2...r3_support_rza1@0.2.0 [0.1.2]: https://github.com/r3-os/r3/compare/r3_support_rza1@0.1.1...r3_support_rza1@0.1.2 [0.1.1]: https://github.com/r3-os/r3/compare/r3_support_rza1@0.1.0...r3_support_rza1@0.1.1 diff --git a/src/r3_support_rza1/Cargo.toml b/src/r3_support_rza1/Cargo.toml index 0a13da367f..db4b027351 100644 --- a/src/r3_support_rza1/Cargo.toml +++ b/src/r3_support_rza1/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "r3_support_rza1" -version = "0.2.0" +version = "0.2.1" edition = "2021" license = "MIT OR Apache-2.0" description = "Supporting package for running R3-OS on Renesas RZ/A1"