Skip to content

Commit

Permalink
Prepare for 0.8.0 release.
Browse files Browse the repository at this point in the history
  • Loading branch information
qwandor committed Jan 16, 2024
1 parent ce7f164 commit f81db13
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 6 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.8.0]

### Breaking changes

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

First release.

[unreleased]: https://github.com/gd32-rust/gd32f1x0-hal/compare/0.7.1...HEAD
[unreleased]: https://github.com/gd32-rust/gd32f1x0-hal/compare/0.8.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 @@ -98,3 +98,4 @@ First release.
[0.6.0]: https://github.com/gd32-rust/gd32f1x0-hal/compare/0.5.0...0.6.0
[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
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.7.1"
version = "0.8.0"

[package.metadata.docs.rs]
features = ["gd32f130x8", "rt"]
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,13 +43,13 @@ You also need to add some dependencies to your `Cargo.toml`:

```toml
[dependencies]
embedded-hal = "0.2.7"
embedded-hal = "1.0.0"
nb = "1.1.0"
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.7.1", features = ["rt", "gd32f130x8"] }
gd32f1x0-hal = { version = "0.8.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.7.1", features = ["gd32f130x8", "rt"] }
gd32f1x0-hal = { version = "0.8.0", features = ["gd32f130x8", "rt"] }
```
## Documentation
Expand Down

0 comments on commit f81db13

Please sign in to comment.