Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Prepare for 0.9.0 release. #43

Merged
merged 1 commit into from
Jan 29, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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.0]

### Breaking changes

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

First release.

[unreleased]: https://github.com/gd32-rust/gd32f1x0-hal/compare/0.8.0...HEAD
[unreleased]: https://github.com/gd32-rust/gd32f1x0-hal/compare/0.9.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
Expand All @@ -106,3 +106,4 @@ First release.
[0.7.0]: https://github.com/gd32-rust/gd32f1x0-hal/compare/0.6.0...0.7.0
[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
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.8.0"
version = "0.9.0"

[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.8.0", features = ["rt", "gd32f130x8"] }
gd32f1x0-hal = { version = "0.9.0", 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.8.0", features = ["gd32f130x8", "rt"] }
gd32f1x0-hal = { version = "0.9.0", features = ["gd32f130x8", "rt"] }
```

## Documentation
Expand Down
Loading