Skip to content

Commit cee053f

Browse files
committed
Bumped dependenciesm, corrected CHANGELOG.md and released 0.3.0
Signed-off-by: Daniel Egger <[email protected]>
1 parent ed78fcb commit cee053f

File tree

2 files changed

+18
-16
lines changed

2 files changed

+18
-16
lines changed

CHANGELOG.md

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

88
## [Unreleased]
99

10+
## [v0.3.0] - 2019-04-27
11+
1012
### Added
1113

1214
- Added device-selected meta feature flag
13-
- Now requires stm32f1 v0.7 (breaking change)
1415
- Restore and improve Serial DMA-based TX, RX and circular implementation
1516
- Implement ADC example
1617
- Implement ADC embedded_hal traits
@@ -21,12 +22,12 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
2122
- Add methods `stop`, `release` and `clear_update_interrupt_flag` to `Timer` (`clear_update_interrupt_flag` does not apply to `Timer<SYST>`)
2223
- Add timer interrupt example using RTFM
2324
- Implement IndependentWatchdog for the IWDG peripheral
24-
- Fix gpio misconfiguration when using a timer in pwm input mode. Now the gpio has to be configured in floating input mode.
2525

2626
### Changed
2727

28+
- Now requires stm32f1 v0.7 (breaking change)
2829
- enable PWM on stm32f100
29-
- Fix pin input mode for pwm_input
30+
- Fix gpio misconfiguration when using a timer in pwm input mode. Now the gpio has to be configured in floating input mode.
3031

3132
## [v0.2.1] - 2019-03-08
3233

@@ -67,6 +68,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
6768

6869
- First tagged version
6970

70-
[Unreleased]: https://github.com/stm32-rs/stm32f1xx-hal/compare/v0.2.1...HEAD
71+
[Unreleased]: https://github.com/stm32-rs/stm32f1xx-hal/compare/v0.3.0...HEAD
72+
[v0.3.0]: https://github.com/stm32-rs/stm32f1xx-hal/compare/v0.2.1...v0.3.0
7173
[v0.2.1]: https://github.com/stm32-rs/stm32f1xx-hal/compare/v0.2.0...v0.2.1
7274
[v0.2.0]: https://github.com/stm32-rs/stm32f1xx-hal/compare/v0.1.1...v0.2.0

Cargo.toml

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ repository = "https://github.com/stm32-rs/stm32f1xx-hal"
99
documentation = "https://docs.rs/stm32f1xx-hal"
1010
readme = "README.md"
1111
edition = "2018"
12-
version = "0.2.1"
12+
version = "0.3.0"
1313

1414
[package.metadata.docs.rs]
1515
features = ["stm32f103", "rt"]
@@ -19,8 +19,8 @@ name = "timer-interrupt-rtfm"
1919
required-features = ["rt"]
2020

2121
[dependencies]
22-
cortex-m = ">=0.5.8,<0.7"
23-
nb = "0.1.1"
22+
cortex-m = "0.6.0"
23+
nb = "0.1.2"
2424
cortex-m-rt = "0.6.8"
2525
stm32f1 = "0.7.0"
2626

@@ -38,31 +38,31 @@ version = "0.2.2"
3838

3939
[dev-dependencies]
4040
panic-halt = "0.2.0"
41-
panic-semihosting = {git = "https://github.com/rust-embedded/panic-semihosting"}
42-
panic-itm = "0.4.0"
43-
cortex-m-rtfm = "0.4.2"
44-
cortex-m-semihosting = "0.3.2"
41+
panic-semihosting = "0.5.2"
42+
panic-itm = "0.4.1"
43+
cortex-m-rtfm = "0.4.3"
44+
cortex-m-semihosting = "0.3.3"
4545
enc28j60 = "0.2.1"
46-
heapless = "0.4.1"
46+
heapless = "0.4.3"
4747
m = "0.1.1"
4848
mfrc522 = "0.2.0"
49-
serde_derive = "1.0.87"
49+
serde_derive = "1.0.90"
5050

5151
[dev-dependencies.byteorder]
5252
default-features = false
5353
version = "1.3.1"
5454

5555
[dev-dependencies.cobs]
5656
default-features = false
57-
version = "0.1.3"
57+
version = "0.1.4"
5858

5959
[dev-dependencies.crc16]
6060
default-features = false
6161
version = "0.4.0"
6262

6363
[dev-dependencies.either]
6464
default-features = false
65-
version = "1.5.0"
65+
version = "1.5.2"
6666

6767
#[dev-dependencies.jnet]
6868
#git = "https://github.com/japaric/jnet"
@@ -78,7 +78,7 @@ version = "1.5.0"
7878

7979
[dev-dependencies.serde]
8080
default-features = false
81-
version = "1.0.87"
81+
version = "1.0.90"
8282

8383
#[dev-dependencies.serde-json-core]
8484
#git = "https://github.com/japaric/serde-json-core"

0 commit comments

Comments
 (0)