Skip to content

Commit

Permalink
Prepare for 0.9.1 release.
Browse files Browse the repository at this point in the history
  • Loading branch information
qwandor committed Jan 29, 2024
1 parent 76a9c4f commit 963926d
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 5 deletions.
5 changes: 3 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ 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.9.1]

## Other changes

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

First release.

[unreleased]: https://github.com/gd32-rust/gd32f1x0-hal/compare/0.9.0...HEAD
[unreleased]: https://github.com/gd32-rust/gd32f1x0-hal/compare/0.9.1...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
Expand All @@ -114,3 +114,4 @@ First release.
[0.7.1]: https://github.com/gd32-rust/gd32f1x0-hal/compare/0.7.0...0.7.1
[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
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ name = "gd32f1x0-hal"
repository = "https://github.com/gd32-rust/gd32f1x0-hal"
readme = "README.md"
edition = "2018"
version = "0.9.0"
version = "0.9.1"

[package.metadata.docs.rs]
features = ["gd32f130x8", "rt"]
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.0", features = ["rt", "gd32f130x8"] }
gd32f1x0-hal = { version = "0.9.1", features = ["rt", "gd32f130x8"] }
```

If you build your project now, you should get a single error:
Expand Down Expand Up @@ -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.0", features = ["gd32f130x8", "rt"] }
gd32f1x0-hal = { version = "0.9.1", features = ["gd32f130x8", "rt"] }
```
## Documentation
Expand Down

0 comments on commit 963926d

Please sign in to comment.