Skip to content

Commit 7e0d7e6

Browse files
authored
Merge pull request #45 from Sh3Rm4n/v0.4.0
Bump version
2 parents 4bbe410 + 5392c6e commit 7e0d7e6

File tree

2 files changed

+23
-8
lines changed

2 files changed

+23
-8
lines changed

CHANGELOG.md

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

88
## [Unreleased]
99

10+
## [v0.4.0] - 2019-12-27
11+
1012
### Added
1113

1214
- USB Driver for all devices except `stm32f301` and `stm32f334` as they have no
1315
USB peripheral. ([#24](https://github.com/stm32-rs/stm32f3xx-hal/pull/24))
1416
- `StatefulOutputPin` and `ToggleableOutputPin` ([#25](https://github.com/stm32-rs/stm32f3xx-hal/pull/25))
15-
- Support devices with 2-bit PLLSRC fields
16-
- This allow using 72 MHz `sysclk` on the `stm32f303`
17+
- Support devices with 2-bit PLLSRC fields ([#31](https://github.com/stm32-rs/stm32f3xx-hal/pull/33))
18+
- This allows using 72 MHz `sysclk` on the `stm32f303`
1719
- Analog gpio trait ([#33](https://github.com/stm32-rs/stm32f3xx-hal/pull/33))
1820
- Add PWM Channels ([#34](https://github.com/stm32-rs/stm32f3xx-hal/pull/34))
1921
- SPI embedded hal modes are now public ([#35](https://github.com/stm32-rs/stm32f3xx-hal/pull/18))
2022

2123
### Breaking changes
2224

23-
- Alternate gpio functions are now made only available for devices, which have them.
25+
- Alternate gpio functions are now **only** made available for devices, which have them.
2426
([#21](https://github.com/stm32-rs/stm32f3xx-hal/pull/21))
2527
- `stm32f303` is now split into `stm32f303xd` and `stm32f303xe` as they provide
2628
different alternate gpio functions. `stm32f303` is still available.
@@ -34,7 +36,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
3436

3537
### Added
3638

37-
- HSE and USB clock are now suppported ([#18](https://github.com/stm32-rs/stm32f3xx-hal/pull/18))
39+
- HSE and USB clock are now supported ([#18](https://github.com/stm32-rs/stm32f3xx-hal/pull/18))
3840

3941
### Changed
4042

@@ -48,7 +50,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
4850

4951
## [v0.2.2] - 2019-07-06
5052

51-
## Fix
53+
## Fixed
5254

5355
- Missing `stm32f303` timers ([#16](https://github.com/stm32-rs/stm32f3xx-hal/pull/16))
5456

@@ -63,7 +65,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
6365
### Changed
6466

6567
- Bump `stm32f3` version to `0.7.1` ([#12](https://github.com/stm32-rs/stm32f3xx-hal/pull/12))
66-
- BUmp `embedded-hal` version to `0.2.1` ([#11](https://github.com/stm32-rs/stm32f3xx-hal/pull/11))
68+
- Bump `embedded-hal` version to `0.2.1` ([#11](https://github.com/stm32-rs/stm32f3xx-hal/pull/11))
6769

6870
### Fixed
6971

@@ -89,7 +91,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
8991

9092
### Added
9193

92-
- Implement GPIO InputPin traits ([#2](https://github.com/stm32-rs/stm32f3xx-hal/pull/2))
94+
- Implement GPIO `InputPin` traits ([#2](https://github.com/stm32-rs/stm32f3xx-hal/pull/2))
9395

9496
## [v0.1.2] - 2019-04-06
9597

@@ -108,3 +110,16 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
108110
## [v0.1.0] - 2019-03-31
109111

110112
- Support `stm32f303` device
113+
114+
[Unreleased]: https://github.com/stm32-rs/stm32f1xx-hal/compare/v0.4.0...HEAD
115+
[v0.4.0]: https://github.com/stm32-rs/stm32f3xx-hal/compare/v0.3.0...v0.4.0
116+
[v0.3.0]: https://github.com/stm32-rs/stm32f3xx-hal/compare/v0.2.3...v0.3.0
117+
[v0.2.3]: https://github.com/stm32-rs/stm32f3xx-hal/compare/v0.2.2...v0.2.3
118+
[v0.2.2]: https://github.com/stm32-rs/stm32f3xx-hal/compare/v0.2.1...v0.2.2
119+
[v0.2.1]: https://github.com/stm32-rs/stm32f3xx-hal/compare/v0.2.0...v0.2.1
120+
[v0.2.0]: https://github.com/stm32-rs/stm32f3xx-hal/compare/v0.1.5...v0.2.0
121+
[v0.1.5]: https://github.com/stm32-rs/stm32f3xx-hal/compare/v0.1.4...v0.1.5
122+
[v0.1.4]: https://github.com/stm32-rs/stm32f3xx-hal/compare/v0.1.3...v0.1.4
123+
[v0.1.3]: https://github.com/stm32-rs/stm32f3xx-hal/compare/v0.1.2...v0.1.3
124+
[v0.1.2]: https://github.com/stm32-rs/stm32f3xx-hal/compare/v0.1.1...v0.1.2
125+
[v0.1.1]: https://github.com/stm32-rs/stm32f3xx-hal/releases/tag/v0.1.1

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ license = "0BSD"
88
name = "stm32f3xx-hal"
99
repository = "https://github.com/stm32-rs/stm32f3xx-hal"
1010
documentation = "https://docs.rs/stm32f3xx-hal"
11-
version = "0.3.0"
11+
version = "0.4.0"
1212

1313
[package.metadata.docs.rs]
1414
features = ["stm32f303xc", "rt", "stm32-usbd"]

0 commit comments

Comments
 (0)