Skip to content

Commit

Permalink
Merge pull request #695 from stm32-rs/r018
Browse files Browse the repository at this point in the history
release 0.18
  • Loading branch information
burrbull authored Nov 20, 2023
2 parents 92c5ce8 + 37a129b commit 198d127
Show file tree
Hide file tree
Showing 7 changed files with 13 additions and 10 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/changelog.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout sources
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Changelog updated
uses: Zomzog/[email protected]
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ jobs:
experimental: true

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Use the latest ${{ matrix.rust }} rustc
run: rustup update ${{ matrix.rust }} && rustup default ${{ matrix.rust }}
- name: Add Cortex-M4F target
Expand All @@ -55,7 +55,7 @@ jobs:
- name: Cache Dependencies
uses: Swatinem/rust-cache@v2
with:
key: v0.17.0-${{ matrix.mcu }}
key: v0.18.0-${{ matrix.mcu }}

- uses: actions-rs/cargo@v1
with:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/clippy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
clippy_check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Use the latest stable rustc
run: rustup update stable && rustup default stable
- name: Add Cortex-M4F target
Expand All @@ -17,7 +17,7 @@ jobs:
- name: Cache Dependencies
uses: Swatinem/rust-cache@v2
with:
key: v0.17.0
key: v0.18.0

- uses: actions-rs/clippy-check@v1
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/rustfmt.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
name: Rustfmt
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Use the latest stable rustc
run: rustup update stable && rustup default stable

Expand Down
7 changes: 5 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/).

## [Unreleased]

## [v0.18.0] - 2023-11-19

### Changed

- bump embedded-hal to `1.0-rc1` (remove `serial` part)
Expand All @@ -22,7 +24,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/).

### Added

- add `.set_count()` for QEI, add `.write_count()` for TIM [#677]
- add `.set_count()` for QEI, add `.write_count()` for TIM [#677]
- add "Fast start" section in README [#678]

[#526]: https://github.com/stm32-rs/stm32f4xx-hal/pull/526
Expand Down Expand Up @@ -954,7 +956,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/).

- Support for stm32f407 and stm32f429.

[Unreleased]: https://github.com/stm32-rs/stm32f4xx-hal/compare/v0.17.1...HEAD
[Unreleased]: https://github.com/stm32-rs/stm32f4xx-hal/compare/v0.18.0...HEAD
[v0.18.0]: https://github.com/stm32-rs/stm32f4xx-hal/compare/v0.17.1...v0.18.0
[v0.17.1]: https://github.com/stm32-rs/stm32f4xx-hal/compare/v0.17.0...v0.17.1
[v0.17.0]: https://github.com/stm32-rs/stm32f4xx-hal/compare/v0.16.2...v0.17.0
[v0.16.2]: https://github.com/stm32-rs/stm32f4xx-hal/compare/v0.16.1...v0.16.2
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ license = "0BSD"
name = "stm32f4xx-hal"
readme = "README.md"
repository = "https://github.com/stm32-rs/stm32f4xx-hal"
version = "0.17.1"
version = "0.18.0"

[package.metadata.docs.rs]
features = ["stm32f429", "usb_fs", "can", "i2s", "fsmc_lcd", "rtic", "defmt"]
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ cortex-m-rt = "0.7"
panic-halt = "0.2"

[dependencies.stm32f4xx-hal]
version = "0.17.1"
version = "0.18.0"
features = ["stm32f407"] # replace the model of your microcontroller here
# and add other required features
```
Expand Down

0 comments on commit 198d127

Please sign in to comment.