Skip to content

Commit

Permalink
Bumped dependenciesm, corrected CHANGELOG.md and released 0.3.0
Browse files Browse the repository at this point in the history
Signed-off-by: Daniel Egger <[email protected]>
  • Loading branch information
therealprof committed Apr 28, 2019
1 parent ed78fcb commit cee053f
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 16 deletions.
10 changes: 6 additions & 4 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,11 @@ and this project adheres to [Semantic Versioning](http://semver.org/).

## [Unreleased]

## [v0.3.0] - 2019-04-27

### Added

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

### Changed

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

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

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

- First tagged version

[Unreleased]: https://github.com/stm32-rs/stm32f1xx-hal/compare/v0.2.1...HEAD
[Unreleased]: https://github.com/stm32-rs/stm32f1xx-hal/compare/v0.3.0...HEAD
[v0.3.0]: https://github.com/stm32-rs/stm32f1xx-hal/compare/v0.2.1...v0.3.0
[v0.2.1]: https://github.com/stm32-rs/stm32f1xx-hal/compare/v0.2.0...v0.2.1
[v0.2.0]: https://github.com/stm32-rs/stm32f1xx-hal/compare/v0.1.1...v0.2.0
24 changes: 12 additions & 12 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ repository = "https://github.com/stm32-rs/stm32f1xx-hal"
documentation = "https://docs.rs/stm32f1xx-hal"
readme = "README.md"
edition = "2018"
version = "0.2.1"
version = "0.3.0"

[package.metadata.docs.rs]
features = ["stm32f103", "rt"]
Expand All @@ -19,8 +19,8 @@ name = "timer-interrupt-rtfm"
required-features = ["rt"]

[dependencies]
cortex-m = ">=0.5.8,<0.7"
nb = "0.1.1"
cortex-m = "0.6.0"
nb = "0.1.2"
cortex-m-rt = "0.6.8"
stm32f1 = "0.7.0"

Expand All @@ -38,31 +38,31 @@ version = "0.2.2"

[dev-dependencies]
panic-halt = "0.2.0"
panic-semihosting = {git = "https://github.com/rust-embedded/panic-semihosting"}
panic-itm = "0.4.0"
cortex-m-rtfm = "0.4.2"
cortex-m-semihosting = "0.3.2"
panic-semihosting = "0.5.2"
panic-itm = "0.4.1"
cortex-m-rtfm = "0.4.3"
cortex-m-semihosting = "0.3.3"
enc28j60 = "0.2.1"
heapless = "0.4.1"
heapless = "0.4.3"
m = "0.1.1"
mfrc522 = "0.2.0"
serde_derive = "1.0.87"
serde_derive = "1.0.90"

[dev-dependencies.byteorder]
default-features = false
version = "1.3.1"

[dev-dependencies.cobs]
default-features = false
version = "0.1.3"
version = "0.1.4"

[dev-dependencies.crc16]
default-features = false
version = "0.4.0"

[dev-dependencies.either]
default-features = false
version = "1.5.0"
version = "1.5.2"

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

[dev-dependencies.serde]
default-features = false
version = "1.0.87"
version = "1.0.90"

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

0 comments on commit cee053f

Please sign in to comment.