Skip to content

Commit

Permalink
v0.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
richardeoin committed Jul 9, 2023
1 parent 42c88e3 commit 61b9134
Show file tree
Hide file tree
Showing 4 changed files with 25 additions and 7 deletions.
19 changes: 16 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,16 @@
# Changelog

## Unreleased
## [Unreleased]

## [v0.2.0] 2023-07-09

* **Breaking:** Rename method `set_interrupt_line_config` to `select_interrupt_line_1` [#27]
* bors bot replaced with GH merge queue
* Rename method `set_interrupt_line_config` to `select_interrupt_line_1` [#27]
* Update txbuffer element.rs : to data length [#23]
* Expose protocol status and error properties [#25]
* Fix undefined behaviour in write_mailbox. [#32]
* Use volatile reads and writes for rx and tx buffers [#34]
* message_ram: fix SFIDx read/write mask [#36]

## [v0.1.2] 2022-09-13

Expand All @@ -19,10 +26,16 @@ Initial release.

Callbacks replaced with parameter buffer #10

[Unreleased]: https://github.com/stm32-rs/fdcan/compare/v0.1.2...HEAD
[Unreleased]: https://github.com/stm32-rs/fdcan/compare/v0.2.0...HEAD
[v0.2.0]: https://github.com/stm32-rs/stm32h7xx-hal/compare/v0.1.2...v0.2.0
[v0.1.2]: https://github.com/stm32-rs/stm32h7xx-hal/compare/v0.1.1...v0.1.2
[v0.1.1]: https://github.com/stm32-rs/stm32h7xx-hal/compare/v0.1.0...v0.1.1

[#18]: https://github.com/stm32-rs/stm32h7xx-hal/pull/18
[#21]: https://github.com/stm32-rs/stm32h7xx-hal/pull/21
[#23]: https://github.com/stm32-rs/stm32h7xx-hal/pull/23
[#25]: https://github.com/stm32-rs/stm32h7xx-hal/pull/25
[#27]: https://github.com/stm32-rs/stm32h7xx-hal/pull/27
[#32]: https://github.com/stm32-rs/stm32h7xx-hal/pull/32
[#34]: https://github.com/stm32-rs/stm32h7xx-hal/pull/34
[#36]: https://github.com/stm32-rs/stm32h7xx-hal/pull/36
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "fdcan"
version = "0.1.2"
version = "0.2.0"
authors = [
"Richard Meadows <[email protected]>",
"Cor Peters <[email protected]>"
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ Add an entry to your `Cargo.toml`:

```toml
[dependencies]
fdcan = "0.1.2"
fdcan = "0.2.0"
```

# Minimum supported Rust version
Expand Down
9 changes: 7 additions & 2 deletions RELEASE_PROCESS.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,13 @@

```
git commit -am 'v0.2.0'
git push origin
git push upstream
# Merge this commit onto the master branch
git fetch upstream
git checkout upstream/master
git tag -a 'v0.2.0' -m 'v0.2.0'
git push origin v0.2.0
git push upstream v0.2.0
cargo publish --features fdcan_g0_g4_l5
```

0 comments on commit 61b9134

Please sign in to comment.