Skip to content

Commit 37a129b

Browse files
committed
release 0.18
1 parent 92c5ce8 commit 37a129b

File tree

7 files changed

+13
-10
lines changed

7 files changed

+13
-10
lines changed

.github/workflows/changelog.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
runs-on: ubuntu-latest
1010
steps:
1111
- name: Checkout sources
12-
uses: actions/checkout@v3
12+
uses: actions/checkout@v4
1313

1414
- name: Changelog updated
1515
uses: Zomzog/[email protected]

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ jobs:
4646
experimental: true
4747

4848
steps:
49-
- uses: actions/checkout@v3
49+
- uses: actions/checkout@v4
5050
- name: Use the latest ${{ matrix.rust }} rustc
5151
run: rustup update ${{ matrix.rust }} && rustup default ${{ matrix.rust }}
5252
- name: Add Cortex-M4F target
@@ -55,7 +55,7 @@ jobs:
5555
- name: Cache Dependencies
5656
uses: Swatinem/rust-cache@v2
5757
with:
58-
key: v0.17.0-${{ matrix.mcu }}
58+
key: v0.18.0-${{ matrix.mcu }}
5959

6060
- uses: actions-rs/cargo@v1
6161
with:

.github/workflows/clippy.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
clippy_check:
99
runs-on: ubuntu-latest
1010
steps:
11-
- uses: actions/checkout@v3
11+
- uses: actions/checkout@v4
1212
- name: Use the latest stable rustc
1313
run: rustup update stable && rustup default stable
1414
- name: Add Cortex-M4F target
@@ -17,7 +17,7 @@ jobs:
1717
- name: Cache Dependencies
1818
uses: Swatinem/rust-cache@v2
1919
with:
20-
key: v0.17.0
20+
key: v0.18.0
2121

2222
- uses: actions-rs/clippy-check@v1
2323
with:

.github/workflows/rustfmt.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
name: Rustfmt
1212
runs-on: ubuntu-latest
1313
steps:
14-
- uses: actions/checkout@v3
14+
- uses: actions/checkout@v4
1515
- name: Use the latest stable rustc
1616
run: rustup update stable && rustup default stable
1717

CHANGELOG.md

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
77

88
## [Unreleased]
99

10+
## [v0.18.0] - 2023-11-19
11+
1012
### Changed
1113

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

2325
### Added
2426

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

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

955957
- Support for stm32f407 and stm32f429.
956958

957-
[Unreleased]: https://github.com/stm32-rs/stm32f4xx-hal/compare/v0.17.1...HEAD
959+
[Unreleased]: https://github.com/stm32-rs/stm32f4xx-hal/compare/v0.18.0...HEAD
960+
[v0.18.0]: https://github.com/stm32-rs/stm32f4xx-hal/compare/v0.17.1...v0.18.0
958961
[v0.17.1]: https://github.com/stm32-rs/stm32f4xx-hal/compare/v0.17.0...v0.17.1
959962
[v0.17.0]: https://github.com/stm32-rs/stm32f4xx-hal/compare/v0.16.2...v0.17.0
960963
[v0.16.2]: https://github.com/stm32-rs/stm32f4xx-hal/compare/v0.16.1...v0.16.2

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ license = "0BSD"
2020
name = "stm32f4xx-hal"
2121
readme = "README.md"
2222
repository = "https://github.com/stm32-rs/stm32f4xx-hal"
23-
version = "0.17.1"
23+
version = "0.18.0"
2424

2525
[package.metadata.docs.rs]
2626
features = ["stm32f429", "usb_fs", "can", "i2s", "fsmc_lcd", "rtic", "defmt"]

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ cortex-m-rt = "0.7"
9595
panic-halt = "0.2"
9696

9797
[dependencies.stm32f4xx-hal]
98-
version = "0.17.1"
98+
version = "0.18.0"
9999
features = ["stm32f407"] # replace the model of your microcontroller here
100100
# and add other required features
101101
```

0 commit comments

Comments
 (0)