From 692a67e5f5865bf5f22ac591163b524ac2fe93c5 Mon Sep 17 00:00:00 2001 From: angie Date: Mon, 15 Jul 2024 11:47:25 -0400 Subject: [PATCH] Fix --- CHANGELOG.md | 13 ++++++++++--- slinky-cli/Cargo.toml | 4 ++-- slinky/Cargo.toml | 2 +- slinky/src/version.rs | 2 +- 4 files changed, 14 insertions(+), 7 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 6a8fc50..17f2edd 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,12 +7,19 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] -## [0.2.0] - 2024-07-15 +## [0.2.1] - 2024-07-15 + +### Fix + +- Fix MSRV + +## [0.2.0] - 2024-07-15 [YANKED] ### Added -- Initial relase +- Initial release -[unreleased]: https://github.com/decompals/slinky/compare/0.2.0...main +[unreleased]: https://github.com/decompals/slinky/compare/0.2.1...main +[0.2.1]: https://github.com/Decompollaborate/spimdisasm/compare/0.2.0...0.2.1 [0.2.0]: https://github.com/decompals/slinky/releases/tag/0.2.0 diff --git a/slinky-cli/Cargo.toml b/slinky-cli/Cargo.toml index 5dfc7d5..8350d75 100644 --- a/slinky-cli/Cargo.toml +++ b/slinky-cli/Cargo.toml @@ -3,7 +3,7 @@ [package] name = "slinky-cli" -version = "0.2.0" +version = "0.2.1" edition = "2021" rust-version = "1.74.1" authors = ["Anghelo Carvajal "] @@ -17,4 +17,4 @@ categories = ["development-tools::build-utils", "command-line-utilities"] [dependencies] clap = { version = "4.5.1", features = ["derive"] } regex = "1.10.5" -slinky = { path = "../slinky", version = "0.2.0" } +slinky = { path = "../slinky", version = "0.2.1" } diff --git a/slinky/Cargo.toml b/slinky/Cargo.toml index 542b34c..94b7448 100644 --- a/slinky/Cargo.toml +++ b/slinky/Cargo.toml @@ -5,7 +5,7 @@ name = "slinky" version = "0.2.0" edition = "2021" -rust-version = "1.66.1" +rust-version = "1.67.1" authors = ["Anghelo Carvajal "] license = "MIT" description = "Linker script generator for decompilation and modding projects" diff --git a/slinky/src/version.rs b/slinky/src/version.rs index c3cdddd..9872009 100644 --- a/slinky/src/version.rs +++ b/slinky/src/version.rs @@ -3,6 +3,6 @@ pub static VERSION_MAJOR: u32 = 0; pub static VERSION_MINOR: u32 = 2; -pub static VERSION_PATCH: u32 = 0; +pub static VERSION_PATCH: u32 = 1; pub static VERSION_TUPLE: (u32, u32, u32) = (VERSION_MAJOR, VERSION_MINOR, VERSION_PATCH);