From 8d1e6a74d955c286569515fa1fe20c7ee1e6ba41 Mon Sep 17 00:00:00 2001 From: angie Date: Mon, 15 Jul 2024 11:51:27 -0400 Subject: [PATCH] fix --- CHANGELOG.md | 11 +++++++++-- Cargo.lock | 4 ++-- slinky-cli/Cargo.toml | 4 ++-- slinky/Cargo.toml | 2 +- slinky/src/version.rs | 2 +- 5 files changed, 15 insertions(+), 8 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 17f2edd..539c416 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,7 +7,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] -## [0.2.1] - 2024-07-15 +## [0.2.2] - 2024-07-15 + +### Fix + +- Fix release + +## [0.2.1] - 2024-07-15 [YANKED] ### Fix @@ -19,7 +25,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Initial release -[unreleased]: https://github.com/decompals/slinky/compare/0.2.1...main +[unreleased]: https://github.com/decompals/slinky/compare/0.2.2...main +[0.2.2]: https://github.com/Decompollaborate/spimdisasm/compare/0.2.1...0.2.2 [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/Cargo.lock b/Cargo.lock index 60226ba..a76a60c 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -434,7 +434,7 @@ dependencies = [ [[package]] name = "slinky" -version = "0.2.0" +version = "0.2.2" dependencies = [ "indexmap", "rstest", @@ -445,7 +445,7 @@ dependencies = [ [[package]] name = "slinky-cli" -version = "0.2.0" +version = "0.2.2" dependencies = [ "clap", "regex", diff --git a/slinky-cli/Cargo.toml b/slinky-cli/Cargo.toml index 8350d75..8982846 100644 --- a/slinky-cli/Cargo.toml +++ b/slinky-cli/Cargo.toml @@ -3,7 +3,7 @@ [package] name = "slinky-cli" -version = "0.2.1" +version = "0.2.2" 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.1" } +slinky = { path = "../slinky", version = "0.2.2" } diff --git a/slinky/Cargo.toml b/slinky/Cargo.toml index 94b7448..64edc4a 100644 --- a/slinky/Cargo.toml +++ b/slinky/Cargo.toml @@ -3,7 +3,7 @@ [package] name = "slinky" -version = "0.2.0" +version = "0.2.2" edition = "2021" rust-version = "1.67.1" authors = ["Anghelo Carvajal "] diff --git a/slinky/src/version.rs b/slinky/src/version.rs index 9872009..1fbcda8 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 = 1; +pub static VERSION_PATCH: u32 = 2; pub static VERSION_TUPLE: (u32, u32, u32) = (VERSION_MAJOR, VERSION_MINOR, VERSION_PATCH);