Bläddra i källkod

bump version to v0.9.0 due to breaking changes

Ales Katona 2 år sedan
förälder
incheckning
95cccf822f
2 ändrade filer med 7 tillägg och 4 borttagningar
  1. 6 3
      CHANGELOG.md
  2. 1 1
      Cargo.toml

+ 6 - 3
CHANGELOG.md

@@ -7,13 +7,16 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
 
 ## [Unreleased]
 
-## [v0.8.1] - 2022-10-06
+## [v0.9.0] - 2022-10-06
 
 ### Fixed
 
 - Fix `asm::delay()` to ensure count register is always reloaded
 - Fix reading marchid and mimpid (#107)
 
+### Removed
+- `set_msoft`, `clear_msoft`, `set_mtimer` and `clear_mtimer` removed as part of fixing issue #62
+
 ## [v0.8.0] - 2022-04-20
 
 ### Added
@@ -92,8 +95,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
 
 - Fixed MSRV by restricting the upper bound of `bare-metal` version
 
-[Unreleased]: https://github.com/rust-embedded/riscv/compare/v0.8.1...HEAD
-[v0.8.1]: https://github.com/rust-embedded/riscv/compare/v0.8.1...v0.8.0
+[Unreleased]: https://github.com/rust-embedded/riscv/compare/v0.9.0...HEAD
+[v0.9.0]: https://github.com/rust-embedded/riscv/compare/v0.8.0...v0.9.0
 [v0.8.0]: https://github.com/rust-embedded/riscv/compare/v0.7.0...v0.8.0
 [v0.7.0]: https://github.com/rust-embedded/riscv/compare/v0.6.0...v0.7.0
 [v0.6.0]: https://github.com/rust-embedded/riscv/compare/v0.5.6...v0.6.0

+ 1 - 1
Cargo.toml

@@ -1,6 +1,6 @@
 [package]
 name = "riscv"
-version = "0.8.1"
+version = "0.9.0"
 edition = "2021"
 rust-version = "1.59"
 repository = "https://github.com/rust-embedded/riscv"