Skip to content

Commit fc0b6a4

Browse files
committed
chore: bump to 0.1.1
1 parent 0ea6767 commit fc0b6a4

File tree

8 files changed

+23
-20
lines changed

8 files changed

+23
-20
lines changed

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] - 2020-12-20
11+
1012
### Added
1113

1214
- `r3_port_std`'s POSIX backend now supports AArch64.
@@ -20,4 +22,5 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
2022

2123
- Initial release.
2224

23-
[Unreleased]: https://github.com/yvt/r3/compare/0.1.0...HEAD
25+
[Unreleased]: https://github.com/yvt/r3/compare/0.1.1...HEAD
26+
[0.1.1]: https://github.com/yvt/r3/compare/0.1.0...0.1.1

Cargo.lock

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

shell.nix

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@ runCommand "dummy" rec {
55
buildInputs = [
66
pkgconfig
77
libusb1
8-
openocd
9-
rustup
8+
# openocd
9+
# rustup
1010
qemu
11-
gcc
11+
# gcc
1212
];
1313
} ""

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.1.0"
3+
version = "0.1.1"
44
authors = ["yvt <[email protected]>"]
55
edition = "2018"
66
license = "MIT OR Apache-2.0"

src/r3_port_arm_m/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "r3_port_arm_m"
3-
version = "0.1.0"
3+
version = "0.1.1"
44
authors = ["yvt <[email protected]>"]
55
edition = "2018"
66
license = "MIT OR Apache-2.0"
@@ -13,8 +13,8 @@ repository = "https://github.com/yvt/r3"
1313
preload-registers = []
1414

1515
[dependencies]
16-
r3_portkit = { version = "0.1.0", path = "../r3_portkit" }
17-
r3 = { version = "0.1.0", path = "../r3" }
16+
r3_portkit = { version = "0.1.1", path = "../r3_portkit" }
17+
r3 = { version = "0.1.1", path = "../r3" }
1818

1919
# `cortex-m-rt` doesn't build on a hosted target. We don't want
2020
# `cargo test --all` to fail because of this, so we put these in the

src/r3_port_riscv/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "r3_port_riscv"
3-
version = "0.1.0"
3+
version = "0.1.1"
44
authors = ["yvt <[email protected]>"]
55
edition = "2018"
66
license = "MIT OR Apache-2.0"
@@ -15,8 +15,8 @@ maintain-pie = []
1515
preload-registers = []
1616

1717
[dependencies]
18-
r3_portkit = { version = "0.1.0", path = "../r3_portkit" }
19-
r3 = { version = "0.1.0", path = "../r3" }
18+
r3_portkit = { version = "0.1.1", path = "../r3_portkit" }
19+
r3 = { version = "0.1.1", path = "../r3" }
2020

2121
register = { version = "0.5.1" }
2222
riscv-rt = { version = ">= 0.6.0, < 0.9.0" }

src/r3_port_std/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "r3_port_std"
3-
version = "0.1.0"
3+
version = "0.1.1"
44
authors = ["yvt <[email protected]>"]
55
edition = "2018"
66
license = "MIT OR Apache-2.0"
@@ -9,7 +9,7 @@ keywords = ["r3", "simulator"]
99
repository = "https://github.com/yvt/r3"
1010

1111
[dependencies]
12-
r3 = { version = "0.1.0", path = "../r3" }
12+
r3 = { version = "0.1.1", path = "../r3" }
1313

1414
atomic_ref = "0.2.0"
1515
env_logger = "0.7.1"

src/r3_portkit/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "r3_portkit"
3-
version = "0.1.0"
3+
version = "0.1.1"
44
authors = ["yvt <[email protected]>"]
55
edition = "2018"
66
license = "MIT OR Apache-2.0"
@@ -9,7 +9,7 @@ keywords = ["r3", "simulator"]
99
repository = "https://github.com/yvt/r3"
1010

1111
[dependencies]
12-
r3 = { version = "0.1.0", path = "../r3" }
12+
r3 = { version = "0.1.1", path = "../r3" }
1313

1414
num-rational = { version = "0.3.0", default-features = false }
1515
svgbobdoc = { version = "0.2.2" }

0 commit comments

Comments
 (0)