Skip to content

Commit cdbda4e

Browse files
committed
chore: bump package versions
r3: 0.2.0 → 0.2.1 r3_core: 0.1.0 → 0.1.1 r3_kernel: 0.1.0 → 0.1.1 r3_port_arm: 0.2.0 → 0.2.1 r3_port_arm_m: 0.3.0 → 0.3.1 r3_port_riscv: 0.2.0 → 0.2.1 r3_port_std: 0.2.0 → 0.2.1 r3_portkit: 0.2.0 → 0.2.1 r3_support_rp2040: 0.2.0 → 0.2.1 r3_support_rza1: 0.2.0 → 0.2.1
1 parent 7584094 commit cdbda4e

File tree

21 files changed

+61
-31
lines changed

21 files changed

+61
-31
lines changed

Cargo.lock

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

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.1] - 2022-03-19
11+
1012
### Fixed
1113

1214
- 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.
6769

6870
Initial release.
6971

70-
[Unreleased]: https://github.com/r3-os/r3/compare/[email protected]
72+
[Unreleased]: https://github.com/r3-os/r3/compare/[email protected]
73+
[0.2.1]: https://github.com/r3-os/r3/compare/[email protected]@0.2.1
7174
[0.2.0]: https://github.com/r3-os/r3/compare/[email protected]@0.2.0
7275
[0.1.3]: https://github.com/r3-os/r3/compare/[email protected]@0.1.3
7376
[0.1.2]: https://github.com/r3-os/r3/compare/[email protected]@0.1.2

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.0"
3+
version = "0.2.1"
44
edition = "2021"
55
license = "MIT OR Apache-2.0"
66
readme = "README.md"

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.1] - 2022-03-19
11+
1012
### Fixed
1113

1214
- 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.
1618

1719
Initial release.
1820

19-
[Unreleased]: https://github.com/r3-os/r3/compare/[email protected]
21+
[Unreleased]: https://github.com/r3-os/r3/compare/[email protected]
22+
[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.0"
3+
version = "0.1.1"
44
edition = "2021"
55
license = "MIT OR Apache-2.0"
66
description = "R3-OS API definition"

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.1] - 2022-03-19
11+
1012
### Fixed
1113

1214
- 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.
1618

1719
Initial release. Supports `r3_core ^0.1`.
1820

19-
[Unreleased]: https://github.com/r3-os/r3/compare/[email protected]
21+
[Unreleased]: https://github.com/r3-os/r3/compare/[email protected]
22+
[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.0"
3+
version = "0.1.1"
44
edition = "2021"
55
license = "MIT OR Apache-2.0"
66
description = "The R3-OS original kernel"

src/r3_port_arm/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.1] - 2022-03-19
11+
1012
### Fixed
1113

1214
- Improve rustdoc theme detection on docs.rs
@@ -42,7 +44,8 @@ This release only includes changes to the documentation.
4244

4345
Initial release.
4446

45-
[Unreleased]: https://github.com/r3-os/r3/compare/[email protected]
47+
[Unreleased]: https://github.com/r3-os/r3/compare/[email protected]
48+
[0.2.1]: https://github.com/r3-os/r3/compare/[email protected][email protected]
4649
[0.2.0]: https://github.com/r3-os/r3/compare/[email protected][email protected]
4750
[0.1.2]: https://github.com/r3-os/r3/compare/[email protected][email protected]
4851
[0.1.1]: https://github.com/r3-os/r3/compare/[email protected][email protected]

src/r3_port_arm/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"
3-
version = "0.2.0"
3+
version = "0.2.1"
44
edition = "2021"
55
license = "MIT OR Apache-2.0"
66
description = "Armv7-A port for the R3-OS original kernel"

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.1] - 2022-03-19
11+
1012
### Fixed
1113

1214
- Improve rustdoc theme detection on docs.rs
@@ -45,7 +47,8 @@ This release only includes changes to the documentation.
4547

4648
Initial release.
4749

48-
[Unreleased]: https://github.com/r3-os/r3/compare/[email protected]
50+
[Unreleased]: https://github.com/r3-os/r3/compare/[email protected]
51+
[0.3.1]: https://github.com/r3-os/r3/compare/[email protected][email protected]
4952
[0.3.0]: https://github.com/r3-os/r3/compare/[email protected][email protected]
5053
[0.2.1]: https://github.com/r3-os/r3/compare/[email protected][email protected]
5154
[0.2.0]: 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.0"
3+
version = "0.3.1"
44
edition = "2021"
55
license = "MIT OR Apache-2.0"
66
description = "Cortex-M port for the R3-OS original kernel"

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.2.1] - 2022-03-19
11+
1012
### Fixed
1113

1214
- 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.
6264

6365
Initial release.
6466

65-
[Unreleased]: https://github.com/r3-os/r3/compare/[email protected]
67+
[Unreleased]: https://github.com/r3-os/r3/compare/[email protected]
68+
[0.2.1]: https://github.com/r3-os/r3/compare/[email protected][email protected]
6669
[0.2.0]: https://github.com/r3-os/r3/compare/[email protected][email protected]
6770
[0.1.3]: https://github.com/r3-os/r3/compare/[email protected][email protected]
6871
[0.1.2]: 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.0"
3+
version = "0.2.1"
44
edition = "2021"
55
license = "MIT OR Apache-2.0"
66
description = "RISC-V port for the R3-OS original kernel"

src/r3_port_std/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.1] - 2022-03-19
11+
1012
### Fixed
1113

1214
- Improve rustdoc theme detection on docs.rs
@@ -41,7 +43,8 @@ This release only includes minor changes to the documentation and internal imple
4143

4244
Initial release.
4345

44-
[Unreleased]: https://github.com/r3-os/r3/compare/[email protected]
46+
[Unreleased]: https://github.com/r3-os/r3/compare/[email protected]
47+
[0.2.1]: https://github.com/r3-os/r3/compare/[email protected][email protected]
4548
[0.2.0]: https://github.com/r3-os/r3/compare/[email protected][email protected]
4649
[0.1.3]: https://github.com/r3-os/r3/compare/[email protected][email protected]
4750
[0.1.2]: https://github.com/r3-os/r3/compare/[email protected][email protected]

src/r3_port_std/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_std"
3-
version = "0.2.0"
3+
version = "0.2.1"
44
edition = "2021"
55
license = "MIT OR Apache-2.0"
66
description = "Simulator port for the R3-OS original kernel"

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.1] - 2022-03-19
11+
1012
### Fixed
1113

1214
- 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.
4345

4446
Initial release.
4547

46-
[Unreleased]: https://github.com/r3-os/r3/compare/[email protected]
48+
[Unreleased]: https://github.com/r3-os/r3/compare/[email protected]
49+
[0.2.1]: https://github.com/r3-os/r3/compare/[email protected][email protected]
4750
[0.2.0]: https://github.com/r3-os/r3/compare/[email protected][email protected]
4851
[0.1.3]: https://github.com/r3-os/r3/compare/[email protected][email protected]
4952
[0.1.2]: 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.0"
3+
version = "0.2.1"
44
edition = "2021"
55
license = "MIT OR Apache-2.0"
66
description = "Utilities for writing a port of R3"

src/r3_support_rp2040/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.1] - 2022-03-19
11+
1012
### Fixed
1113

1214
- Improve rustdoc theme detection on docs.rs
@@ -26,6 +28,7 @@ This release only includes changes to the documentation.
2628

2729
Initial release.
2830

29-
[Unreleased]: https://github.com/r3-os/r3/compare/[email protected]
31+
[Unreleased]: https://github.com/r3-os/r3/compare/[email protected]
32+
[0.2.1]: https://github.com/r3-os/r3/compare/[email protected][email protected]
3033
[0.2.0]: https://github.com/r3-os/r3/compare/[email protected][email protected]
3134
[0.1.1]: https://github.com/r3-os/r3/compare/[email protected][email protected]

src/r3_support_rp2040/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_support_rp2040"
3-
version = "0.2.0"
3+
version = "0.2.1"
44
edition = "2021"
55
license = "MIT OR Apache-2.0"
66
description = "Supporting package for running R3-OS on RP2040"

src/r3_support_rza1/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.1] - 2022-03-19
11+
1012
### Fixed
1113

1214
- Improve rustdoc theme detection on docs.rs
@@ -31,7 +33,8 @@ This release only includes changes to the documentation.
3133

3234
Initial release.
3335

34-
[Unreleased]: https://github.com/r3-os/r3/compare/[email protected]
36+
[Unreleased]: https://github.com/r3-os/r3/compare/[email protected]
37+
[0.2.1]: https://github.com/r3-os/r3/compare/[email protected][email protected]
3538
[0.2.0]: https://github.com/r3-os/r3/compare/[email protected][email protected]
3639
[0.1.2]: https://github.com/r3-os/r3/compare/[email protected][email protected]
3740
[0.1.1]: https://github.com/r3-os/r3/compare/[email protected][email protected]

src/r3_support_rza1/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_support_rza1"
3-
version = "0.2.0"
3+
version = "0.2.1"
44
edition = "2021"
55
license = "MIT OR Apache-2.0"
66
description = "Supporting package for running R3-OS on Renesas RZ/A1"

0 commit comments

Comments
 (0)