Skip to content

Commit 8dd361f

Browse files
authored
Merge pull request #742 from rust-embedded/release-0.30
release 0.30
2 parents 7d69ea4 + 6709963 commit 8dd361f

File tree

5 files changed

+17
-7
lines changed

5 files changed

+17
-7
lines changed

.cargo/config.toml

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
[target.aarch64-unknown-linux-gnu]
2+
linker = "aarch64-linux-gnu-gcc"

.github/workflows/release.yml

+5
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,11 @@ jobs:
3838
uses: Swatinem/rust-cache@v2
3939
with:
4040
key: ${{ matrix.target }}
41+
42+
- name: Install Dependencies
43+
if: ${{ matrix.target == 'aarch64-unknown-linux-gnu' }}
44+
run: sudo apt install -y gcc-aarch64-linux-gnu
45+
4146
- run: cargo build --target ${{ matrix.target }} --release
4247

4348
- name: Compress and rename executable

CHANGELOG.md

+4-1
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/).
77

88
## [Unreleased]
99

10+
## [v0.30.0] - 2023-08-16
11+
1012
- Add `aarch64` target for releases, more readme badges
1113
- Fix when `atomics` features is generated but not enabled
1214
- move hidden structs into module, add register reader/writer links into `SPEC` docs (#736)
@@ -802,7 +804,8 @@ peripheral.register.write(|w| w.field().set());
802804

803805
- Initial version of the `svd2rust` tool
804806

805-
[Unreleased]: https://github.com/rust-embedded/svd2rust/compare/v0.29.0...HEAD
807+
[Unreleased]: https://github.com/rust-embedded/svd2rust/compare/v0.30.0...HEAD
808+
[v0.30.0]: https://github.com/rust-embedded/svd2rust/compare/v0.29.0...v0.30.0
806809
[v0.29.0]: https://github.com/rust-embedded/svd2rust/compare/v0.28.0...v0.29.0
807810
[v0.28.0]: https://github.com/rust-embedded/svd2rust/compare/v0.27.2...v0.28.0
808811
[v0.27.2]: https://github.com/rust-embedded/svd2rust/compare/v0.27.1...v0.27.2

Cargo.lock

+5-5
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ keywords = [
2323
license = "MIT OR Apache-2.0"
2424
name = "svd2rust"
2525
repository = "https://github.com/rust-embedded/svd2rust/"
26-
version = "0.29.0"
26+
version = "0.30.0"
2727
readme = "README.md"
2828
rust-version = "1.65"
2929

0 commit comments

Comments
 (0)