Skip to content

Commit 964a116

Browse files
committed
chore: bump package versions
r3: 0.2.2 → 0.2.3 r3_core: 0.1.2 → 0.1.3 r3_kernel: 0.1.2 → 0.1.3 r3_port_arm: 0.2.2 r3_port_arm_m: 0.3.1 → 0.3.2 r3_port_riscv: 0.2.1 → 0.3.0 (breaking) r3_port_std: 0.2.1 r3_portkit: 0.2.1 → 0.2.2 r3_support_rp2040: 0.2.2 r3_support_rza1: 0.2.2
1 parent da8debe commit 964a116

File tree

14 files changed

+43
-25
lines changed

14 files changed

+43
-25
lines changed

Cargo.lock

Lines changed: 6 additions & 6 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -62,15 +62,15 @@ repository = "https://github.com/r3-os/r3"
6262
# the old version of `r3_portkit` is semver-incompatible with the latest one
6363
# and contains substantial bugs.
6464
arm_semihosting = { path = "src/arm_semihosting" }
65-
r3 = { path = "src/r3", version = "0.2.2" }
66-
r3_core = { path = "src/r3_core", version = "0.1.2", package = "r3_core" } # Application-side API
67-
r3_core_ks = { path = "src/r3_core", version = "0.1.2", package = "r3_core" } # Kernel-side API
68-
r3_kernel = { path = "src/r3_kernel", version = "0.1.2" }
65+
r3 = { path = "src/r3", version = "0.2.3" }
66+
r3_core = { path = "src/r3_core", version = "0.1.3", package = "r3_core" } # Application-side API
67+
r3_core_ks = { path = "src/r3_core", version = "0.1.3", package = "r3_core" } # Kernel-side API
68+
r3_kernel = { path = "src/r3_kernel", version = "0.1.3" }
6969
r3_port_arm = { path = "src/r3_port_arm", version = "0.2.2" }
70-
r3_port_arm_m = { path = "src/r3_port_arm_m", version = "0.3.1" }
71-
r3_port_riscv = { path = "src/r3_port_riscv", version = "0.2.1" }
70+
r3_port_arm_m = { path = "src/r3_port_arm_m", version = "0.3.2" }
71+
r3_port_riscv = { path = "src/r3_port_riscv", version = "0.3.0" }
7272
r3_port_std = { path = "src/r3_port_std", version = "0.2.1" }
73-
r3_portkit = { path = "src/r3_portkit", version = "0.2.1" }
73+
r3_portkit = { path = "src/r3_portkit", version = "0.2.2" }
7474
r3_support_rp2040 = { path = "src/r3_support_rp2040", version = "0.2.2" }
7575
r3_support_rza1 = { path = "src/r3_support_rza1", version = "0.2.2" }
7676
r3_test_suite = { path = "src/r3_test_suite", default-features = false }

src/r3/CHANGELOG.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
77

88
## [Unreleased]
99

10+
## [0.2.3] - 2022-08-16
11+
1012
### Changed
1113

1214
- **Breaking (semver-exempt):** Change the target compiler version to `nightly-2022-08-11`
@@ -81,7 +83,8 @@ This release only includes changes to the documentation.
8183

8284
Initial release.
8385

84-
[Unreleased]: https://github.com/r3-os/r3/compare/[email protected]
86+
[Unreleased]: https://github.com/r3-os/r3/compare/[email protected]
87+
[0.2.3]: https://github.com/r3-os/r3/compare/[email protected]@0.2.3
8588
[0.2.2]: https://github.com/r3-os/r3/compare/[email protected]@0.2.2
8689
[0.2.1]: https://github.com/r3-os/r3/compare/[email protected]@0.2.1
8790
[0.2.0]: https://github.com/r3-os/r3/compare/[email protected]@0.2.0

src/r3/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "r3"
3-
version = "0.2.2"
3+
version = "0.2.3"
44
readme = "README.md"
55
description = """
66
R3-OS: Experimental static component-oriented RTOS for deeply embedded systems

src/r3_core/CHANGELOG.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
77

88
## [Unreleased]
99

10+
## [0.1.3] - 2022-08-16
11+
1012
### Added
1113

1214
- The new blanket-implemented `CfgStatic` trait can be used to simplify some trait bounds of configuration functions.
@@ -37,6 +39,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
3739

3840
Initial release.
3941

40-
[Unreleased]: https://github.com/r3-os/r3/compare/[email protected]
42+
[Unreleased]: https://github.com/r3-os/r3/compare/[email protected]
43+
[0.1.3]: https://github.com/r3-os/r3/compare/[email protected]@0.1.3
4144
[0.1.2]: https://github.com/r3-os/r3/compare/[email protected]@0.1.2
4245
[0.1.1]: https://github.com/r3-os/r3/compare/[email protected]@0.1.1

src/r3_core/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "r3_core"
3-
version = "0.1.2"
3+
version = "0.1.3"
44
description = "R3-OS API definition"
55
categories = ["embedded", "no-std"]
66
keywords = ["r3", "rtos"]

src/r3_kernel/CHANGELOG.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
77

88
## [Unreleased]
99

10+
## [0.1.3] - 2022-08-16
11+
1012
### Changed
1113

1214
- **Breaking (semver-exempt):** Change the target compiler version to `nightly-2022-08-11`
@@ -32,6 +34,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
3234

3335
Initial release. Supports `r3_core ^0.1`.
3436

35-
[Unreleased]: https://github.com/r3-os/r3/compare/[email protected]
37+
[Unreleased]: https://github.com/r3-os/r3/compare/[email protected]
38+
[0.1.3]: https://github.com/r3-os/r3/compare/[email protected]@0.1.3
3639
[0.1.2]: https://github.com/r3-os/r3/compare/[email protected]@0.1.2
3740
[0.1.1]: https://github.com/r3-os/r3/compare/[email protected]@0.1.1

src/r3_kernel/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "r3_kernel"
3-
version = "0.1.2"
3+
version = "0.1.3"
44
description = "The R3-OS original kernel"
55
categories = ["embedded", "no-std"]
66
keywords = ["r3"]

src/r3_port_arm_m/CHANGELOG.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
77

88
## [Unreleased]
99

10+
## [0.3.2] - 2022-03-19
11+
1012
### Changed
1113

1214
- **Breaking (semver-exempt):** Change the target compiler version to `nightly-2022-08-11`
@@ -56,7 +58,8 @@ This release only includes changes to the documentation.
5658

5759
Initial release.
5860

59-
[Unreleased]: https://github.com/r3-os/r3/compare/[email protected]
61+
[Unreleased]: https://github.com/r3-os/r3/compare/[email protected]
62+
[0.3.2]: https://github.com/r3-os/r3/compare/[email protected][email protected]
6063
[0.3.1]: https://github.com/r3-os/r3/compare/[email protected][email protected]
6164
[0.3.0]: https://github.com/r3-os/r3/compare/[email protected][email protected]
6265
[0.2.1]: https://github.com/r3-os/r3/compare/[email protected][email protected]

src/r3_port_arm_m/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "r3_port_arm_m"
3-
version = "0.3.1"
3+
version = "0.3.2"
44
description = "Cortex-M port for the R3-OS original kernel"
55
categories = ["embedded", "no-std"]
66
keywords = ["r3", "arm"]

src/r3_port_riscv/CHANGELOG.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
77

88
## [Unreleased]
99

10+
## [0.3.0] - 2022-08-16
11+
1012
### Changed
1113

1214
- **Breaking (semver-exempt):** Change the target compiler version to `nightly-2022-08-11`
@@ -71,7 +73,8 @@ This release only includes changes to the documentation.
7173

7274
Initial release.
7375

74-
[Unreleased]: https://github.com/r3-os/r3/compare/[email protected]
76+
[Unreleased]: https://github.com/r3-os/r3/compare/[email protected]
77+
[0.3.0]: https://github.com/r3-os/r3/compare/[email protected][email protected]
7578
[0.2.1]: https://github.com/r3-os/r3/compare/[email protected][email protected]
7679
[0.2.0]: https://github.com/r3-os/r3/compare/[email protected][email protected]
7780
[0.1.3]: https://github.com/r3-os/r3/compare/[email protected][email protected]

src/r3_port_riscv/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "r3_port_riscv"
3-
version = "0.2.1"
3+
version = "0.3.0"
44
description = "RISC-V port for the R3-OS original kernel"
55
categories = ["embedded", "no-std"]
66
keywords = ["r3", "riscv"]

src/r3_portkit/CHANGELOG.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
77

88
## [Unreleased]
99

10+
## [0.2.2] - 2022-08-16
11+
1012
### Changed
1113

1214
- **Breaking (semver-exempt):** Change the target compiler version to `nightly-2022-08-11`
@@ -54,7 +56,8 @@ This release only includes changes to the documentation.
5456

5557
Initial release.
5658

57-
[Unreleased]: https://github.com/r3-os/r3/compare/[email protected]
59+
[Unreleased]: https://github.com/r3-os/r3/compare/[email protected]
60+
[0.2.2]: https://github.com/r3-os/r3/compare/[email protected][email protected]
5861
[0.2.1]: https://github.com/r3-os/r3/compare/[email protected][email protected]
5962
[0.2.0]: https://github.com/r3-os/r3/compare/[email protected][email protected]
6063
[0.1.3]: https://github.com/r3-os/r3/compare/[email protected][email protected]

src/r3_portkit/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "r3_portkit"
3-
version = "0.2.1"
3+
version = "0.2.2"
44
description = "Utilities for writing a port of R3"
55
categories = ["embedded", "no-std"]
66
keywords = ["r3", "simulator"]

0 commit comments

Comments
 (0)