Skip to content

Commit

Permalink
chore: bump package versions
Browse files Browse the repository at this point in the history
    r3:                 0.2.3 → 0.2.4
    r3_core:            0.1.3 → 0.1.4
    r3_kernel:          0.1.3 → 0.1.4
    r3_port_arm:        0.2.2 → 0.2.3
    r3_port_arm_m:      0.3.2 → 0.3.3
    r3_port_riscv:      0.3.0 → 0.3.1
    r3_port_std:        0.2.1
    r3_portkit:         0.2.2 → 0.2.3
    r3_support_rp2040:  0.2.2
    r3_support_rza1:    0.2.2

`r3_port_std` is excluded since no production code changes have been
made since the last release.
  • Loading branch information
yvt committed Nov 15, 2022
1 parent a020088 commit 868d1f6
Show file tree
Hide file tree
Showing 16 changed files with 48 additions and 28 deletions.
14 changes: 7 additions & 7 deletions Cargo.lock

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

16 changes: 8 additions & 8 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -62,15 +62,15 @@ repository = "https://github.com/r3-os/r3"
# the old version of `r3_portkit` is semver-incompatible with the latest one
# and contains substantial bugs.
arm_semihosting = { path = "src/arm_semihosting" }
r3 = { path = "src/r3", version = "0.2.3" }
r3_core = { path = "src/r3_core", version = "0.1.3", package = "r3_core" } # Application-side API
r3_core_ks = { path = "src/r3_core", version = "0.1.3", package = "r3_core" } # Kernel-side API
r3_kernel = { path = "src/r3_kernel", version = "0.1.3" }
r3_port_arm = { path = "src/r3_port_arm", version = "0.2.2" }
r3_port_arm_m = { path = "src/r3_port_arm_m", version = "0.3.2" }
r3_port_riscv = { path = "src/r3_port_riscv", version = "0.3.0" }
r3 = { path = "src/r3", version = "0.2.4" }
r3_core = { path = "src/r3_core", version = "0.1.4", package = "r3_core" } # Application-side API
r3_core_ks = { path = "src/r3_core", version = "0.1.4", package = "r3_core" } # Kernel-side API
r3_kernel = { path = "src/r3_kernel", version = "0.1.4" }
r3_port_arm = { path = "src/r3_port_arm", version = "0.2.3" }
r3_port_arm_m = { path = "src/r3_port_arm_m", version = "0.3.3" }
r3_port_riscv = { path = "src/r3_port_riscv", version = "0.3.1" }
r3_port_std = { path = "src/r3_port_std", version = "0.2.1" }
r3_portkit = { path = "src/r3_portkit", version = "0.2.2" }
r3_portkit = { path = "src/r3_portkit", version = "0.2.3" }
r3_support_rp2040 = { path = "src/r3_support_rp2040", version = "0.2.2" }
r3_support_rza1 = { path = "src/r3_support_rza1", version = "0.2.2" }
r3_test_suite = { path = "src/r3_test_suite", default-features = false }
Expand Down
5 changes: 4 additions & 1 deletion src/r3/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.

## [Unreleased]

## [0.2.4] - 2022-11-16

### Changed

- **Breaking (semver-exempt):** Change the target compiler version to `nightly-2022-11-10`
Expand Down Expand Up @@ -87,7 +89,8 @@ This release only includes changes to the documentation.

Initial release.

[Unreleased]: https://github.com/r3-os/r3/compare/[email protected]
[Unreleased]: https://github.com/r3-os/r3/compare/[email protected]
[0.2.4]: https://github.com/r3-os/r3/compare/[email protected]@0.2.4
[0.2.3]: https://github.com/r3-os/r3/compare/[email protected]@0.2.3
[0.2.2]: https://github.com/r3-os/r3/compare/[email protected]@0.2.2
[0.2.1]: https://github.com/r3-os/r3/compare/[email protected]@0.2.1
Expand Down
2 changes: 1 addition & 1 deletion src/r3/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "r3"
version = "0.2.3"
version = "0.2.4"
readme = "README.md"
description = """
R3-OS: Experimental static component-oriented RTOS for deeply embedded systems
Expand Down
5 changes: 4 additions & 1 deletion src/r3_core/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.

## [Unreleased]

## [0.1.4] - 2022-11-16

### Changed

- **Breaking (semver-exempt):** Change the target compiler version to `nightly-2022-11-10`
Expand Down Expand Up @@ -47,7 +49,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.

Initial release.

[Unreleased]: https://github.com/r3-os/r3/compare/[email protected]
[Unreleased]: https://github.com/r3-os/r3/compare/[email protected]
[0.1.4]: https://github.com/r3-os/r3/compare/[email protected]@0.1.4
[0.1.3]: https://github.com/r3-os/r3/compare/[email protected]@0.1.3
[0.1.2]: https://github.com/r3-os/r3/compare/[email protected]@0.1.2
[0.1.1]: https://github.com/r3-os/r3/compare/[email protected]@0.1.1
2 changes: 1 addition & 1 deletion src/r3_core/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "r3_core"
version = "0.1.3"
version = "0.1.4"
description = "R3-OS API definition"
categories = ["embedded", "no-std"]
keywords = ["r3", "rtos"]
Expand Down
5 changes: 4 additions & 1 deletion src/r3_kernel/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.

## [Unreleased]

## [0.1.4] - 2022-11-16

### Changed

- **Breaking (semver-exempt):** Change the target compiler version to `nightly-2022-11-10`
Expand Down Expand Up @@ -38,7 +40,8 @@ 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/[email protected]
[Unreleased]: https://github.com/r3-os/r3/compare/[email protected]
[0.1.4]: https://github.com/r3-os/r3/compare/[email protected]@0.1.4
[0.1.3]: https://github.com/r3-os/r3/compare/[email protected]@0.1.3
[0.1.2]: https://github.com/r3-os/r3/compare/[email protected]@0.1.2
[0.1.1]: https://github.com/r3-os/r3/compare/[email protected]@0.1.1
2 changes: 1 addition & 1 deletion src/r3_kernel/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "r3_kernel"
version = "0.1.3"
version = "0.1.4"
description = "The R3-OS original kernel"
categories = ["embedded", "no-std"]
keywords = ["r3"]
Expand Down
5 changes: 4 additions & 1 deletion src/r3_port_arm/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.

## [Unreleased]

## [0.2.3] - 2022-11-16

### Changed

- **Breaking (semver-exempt):** Change the target compiler version to `nightly-2022-11-10`
Expand Down Expand Up @@ -55,7 +57,8 @@ This release only includes changes to the documentation.

Initial release.

[Unreleased]: https://github.com/r3-os/r3/compare/[email protected]
[Unreleased]: https://github.com/r3-os/r3/compare/[email protected]
[0.2.3]: https://github.com/r3-os/r3/compare/[email protected][email protected]
[0.2.2]: https://github.com/r3-os/r3/compare/[email protected][email protected]
[0.2.1]: https://github.com/r3-os/r3/compare/[email protected][email protected]
[0.2.0]: https://github.com/r3-os/r3/compare/[email protected][email protected]
Expand Down
2 changes: 1 addition & 1 deletion src/r3_port_arm/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "r3_port_arm"
version = "0.2.2"
version = "0.2.3"
description = "Armv7-A port for the R3-OS original kernel"
categories = ["embedded", "no-std"]
keywords = ["r3", "arm"]
Expand Down
2 changes: 2 additions & 0 deletions src/r3_port_arm_m/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.

## [Unreleased]

## [0.3.3] - 2022-11-16

### Changed

- **Breaking (semver-exempt):** Change the target compiler version to `nightly-2022-11-10`
Expand Down
2 changes: 1 addition & 1 deletion src/r3_port_arm_m/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "r3_port_arm_m"
version = "0.3.2"
version = "0.3.3"
description = "Cortex-M port for the R3-OS original kernel"
categories = ["embedded", "no-std"]
keywords = ["r3", "arm"]
Expand Down
5 changes: 4 additions & 1 deletion src/r3_port_riscv/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.

## [Unreleased]

## [0.3.1] - 2022-11-16

### Changed

- **Breaking (semver-exempt):** Change the target compiler version to `nightly-2022-11-10`
Expand Down Expand Up @@ -77,7 +79,8 @@ This release only includes changes to the documentation.

Initial release.

[Unreleased]: https://github.com/r3-os/r3/compare/[email protected]
[Unreleased]: https://github.com/r3-os/r3/compare/[email protected]
[0.3.1]: https://github.com/r3-os/r3/compare/[email protected][email protected]
[0.3.0]: https://github.com/r3-os/r3/compare/[email protected][email protected]
[0.2.1]: https://github.com/r3-os/r3/compare/[email protected][email protected]
[0.2.0]: https://github.com/r3-os/r3/compare/[email protected][email protected]
Expand Down
2 changes: 1 addition & 1 deletion src/r3_port_riscv/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "r3_port_riscv"
version = "0.3.0"
version = "0.3.1"
description = "RISC-V port for the R3-OS original kernel"
categories = ["embedded", "no-std"]
keywords = ["r3", "riscv"]
Expand Down
5 changes: 4 additions & 1 deletion src/r3_portkit/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.

## [Unreleased]

## [0.2.3] - 2022-11-16

### Changed

- **Breaking (semver-exempt):** Change the target compiler version to `nightly-2022-11-10`
Expand Down Expand Up @@ -60,7 +62,8 @@ This release only includes changes to the documentation.

Initial release.

[Unreleased]: https://github.com/r3-os/r3/compare/[email protected]
[Unreleased]: https://github.com/r3-os/r3/compare/[email protected]
[0.2.3]: https://github.com/r3-os/r3/compare/[email protected][email protected]
[0.2.2]: https://github.com/r3-os/r3/compare/[email protected][email protected]
[0.2.1]: https://github.com/r3-os/r3/compare/[email protected][email protected]
[0.2.0]: https://github.com/r3-os/r3/compare/[email protected][email protected]
Expand Down
2 changes: 1 addition & 1 deletion src/r3_portkit/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "r3_portkit"
version = "0.2.2"
version = "0.2.3"
description = "Utilities for writing a port of R3"
categories = ["embedded", "no-std"]
keywords = ["r3", "simulator"]
Expand Down

0 comments on commit 868d1f6

Please sign in to comment.