Skip to content

Commit 615f093

Browse files
authored
Merge pull request #730 from rust-embedded/release029
release 0.29
2 parents ac743fe + 4557f4c commit 615f093

File tree

2 files changed

+16
-13
lines changed

2 files changed

+16
-13
lines changed

CHANGELOG.md

+14-11
Original file line numberDiff line numberDiff line change
@@ -7,17 +7,19 @@ and this project adheres to [Semantic Versioning](https://semver.org/).
77

88
## [Unreleased]
99

10-
- `FieldFpec` instead or `fty` generic
11-
- print error on ci `curl` request fail
12-
- removed `rty` generic in `FieldWriter`
13-
- `bool` and `u8` as default generics for `BitReader/Writer` and `FieldReader/Writer`
14-
- Bump MSRV to 1.65
15-
- Optimize case change/sanitize
16-
- Fix dangling implicit derives
17-
- Fix escaping <> and & characters in doc attributes
18-
- Add `interrupt_link_section` config parameter for controlling the `#[link_section = "..."]` attribute of `__INTERRUPTS`
10+
## [v0.29.0] - 2023-06-05
11+
12+
- `FieldFpec` instead or `fty` generic (#722)
13+
- print error on ci `curl` request fail (#725)
14+
- removed `rty` generic in `FieldWriter` (#721)
15+
- `bool` and `u8` as default generics for `BitReader/Writer` and `FieldReader/Writer` (#720)
16+
- Bump MSRV to 1.65 (#711)
17+
- Optimize case change/sanitize (#715)
18+
- Fix dangling implicit derives (#703)
19+
- Fix escaping <> and & characters in doc attributes (#711)
20+
- Add `interrupt_link_section` config parameter for controlling the `#[link_section = "..."]` attribute of `__INTERRUPTS` (#718)
1921
- Add option to implement Debug for readable registers (#716)
20-
- Add `atomics-feature`
22+
- Add `atomics-feature` (#729)
2123

2224
## [v0.28.0] - 2022-12-25
2325

@@ -792,7 +794,8 @@ peripheral.register.write(|w| w.field().set());
792794

793795
- Initial version of the `svd2rust` tool
794796

795-
[Unreleased]: https://github.com/rust-embedded/svd2rust/compare/v0.28.0...HEAD
797+
[Unreleased]: https://github.com/rust-embedded/svd2rust/compare/v0.29.0...HEAD
798+
[v0.29.0]: https://github.com/rust-embedded/svd2rust/compare/v0.28.0...v0.29.0
796799
[v0.28.0]: https://github.com/rust-embedded/svd2rust/compare/v0.27.2...v0.28.0
797800
[v0.27.2]: https://github.com/rust-embedded/svd2rust/compare/v0.27.1...v0.27.2
798801
[v0.27.1]: https://github.com/rust-embedded/svd2rust/compare/v0.27.0...v0.27.1

Cargo.toml

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

3030
[package.metadata.deb]
3131
section = "rust"

0 commit comments

Comments
 (0)