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.1 release. #61

Merged
merged 1 commit into from Mar 26, 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.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
7 changes: 4 additions & 3 deletions CHANGELOG.md
@@ -1,6 +1,6 @@
# Changelog

## [Unreleased]
## [0.9.1]

- Re-enabled re-export of `cortex_m_rt::interrupt` macro.

Expand Down Expand Up @@ -101,7 +101,7 @@

First release.

[unreleased]: https://github.com/gd32-rust/gd32-rs/compare/0.9.0...HEAD
[unreleased]: https://github.com/gd32-rust/gd32-rs/compare/0.9.1...HEAD
[0.2.0]: https://github.com/gd32-rust/gd32-rs/compare/0.1.0...0.2.0
[0.2.1]: https://github.com/gd32-rust/gd32-rs/compare/0.2.0...0.2.1
[0.3.0]: https://github.com/gd32-rust/gd32-rs/compare/0.2.1...0.3.0
Expand All @@ -110,4 +110,5 @@ First release.
[0.6.0]: https://github.com/gd32-rust/gd32-rs/compare/0.5.0...0.6.0
[0.7.0]: https://github.com/gd32-rust/gd32-rs/compare/0.6.0...0.7.0
[0.8.0]: https://github.com/gd32-rust/gd32-rs/compare/0.7.0...0.8.0
[0.8.0]: https://github.com/gd32-rust/gd32-rs/compare/0.8.0...0.9.0
[0.9.0]: https://github.com/gd32-rust/gd32-rs/compare/0.8.0...0.9.0
[0.9.1]: https://github.com/gd32-rust/gd32-rs/compare/0.9.0...0.9.1
2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -39,7 +39,7 @@ In your own project's `Cargo.toml`:

```toml
[dependencies.gd32f1]
version = "0.9.0"
version = "0.9.1"
features = ["gd32f130", "rt"]
```

Expand Down
2 changes: 1 addition & 1 deletion scripts/makecrates.py
Expand Up @@ -16,7 +16,7 @@
import re
import yaml

VERSION = "0.9.0"
VERSION = "0.9.1"
SVD2RUST_VERSION = "0.32.0"

CRATE_DOC_FEATURES = {
Expand Down