diff --git a/CHANGELOG.md b/CHANGELOG.md index f5ed325..3aacbfa 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,7 +5,11 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](http://keepachangelog.com/) and this project adheres to [Semantic Versioning](http://semver.org/). -## [Unreleased] +## [0.10.0] + +### Breaking changes + +- Updated to `gd32f1` 0.9.1. ## Other changes @@ -109,7 +113,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/). First release. -[unreleased]: https://github.com/gd32-rust/gd32f1x0-hal/compare/0.9.1...HEAD +[unreleased]: https://github.com/gd32-rust/gd32f1x0-hal/compare/0.10.0...HEAD [0.2.0]: https://github.com/gd32-rust/gd32f1x0-hal/compare/0.1.0...0.2.0 [0.2.1]: https://github.com/gd32-rust/gd32f1x0-hal/compare/0.2.0...0.2.1 [0.3.0]: https://github.com/gd32-rust/gd32f1x0-hal/compare/0.2.1...0.3.0 @@ -121,3 +125,4 @@ First release. [0.8.0]: https://github.com/gd32-rust/gd32f1x0-hal/compare/0.7.1...0.8.0 [0.9.0]: https://github.com/gd32-rust/gd32f1x0-hal/compare/0.8.0...0.9.0 [0.9.1]: https://github.com/gd32-rust/gd32f1x0-hal/compare/0.9.0...0.9.1 +[0.10.0]: https://github.com/gd32-rust/gd32f1x0-hal/compare/0.9.1...0.10.0 diff --git a/Cargo.toml b/Cargo.toml index 9418726..313784a 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -8,7 +8,7 @@ name = "gd32f1x0-hal" repository = "https://github.com/gd32-rust/gd32f1x0-hal" readme = "README.md" edition = "2018" -version = "0.9.1" +version = "0.10.0" [package.metadata.docs.rs] features = ["gd32f130x8", "rt"] diff --git a/README.md b/README.md index c203188..ffa2a0b 100644 --- a/README.md +++ b/README.md @@ -49,7 +49,7 @@ cortex-m = { version = "0.7.7", features = ["critical-section-single-core"] } cortex-m-rt = "0.7.3" # Panic behaviour, see https://crates.io/keywords/panic-impl for alternatives panic-halt = "0.2.0" -gd32f1x0-hal = { version = "0.9.1", features = ["rt", "gd32f130x8"] } +gd32f1x0-hal = { version = "0.10.0", features = ["rt", "gd32f130x8"] } ``` If you build your project now, you should get a single error: @@ -169,7 +169,7 @@ When using this crate as a dependency in your project, the microcontroller can be specified as part of the `Cargo.toml` definition. ```toml -gd32f1x0-hal = { version = "0.9.1", features = ["gd32f130x8", "rt"] } +gd32f1x0-hal = { version = "0.10.0", features = ["gd32f130x8", "rt"] } ``` ## Documentation