diff --git a/CHANGELOG.md b/CHANGELOG.md index a035e56..3ade5c8 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.3] - 2024-07-15 +## [0.2.4] - 2024-07-15 + +### Fixed + +- Fix Crate version not updated. + +## [0.2.3] - 2024-07-15 [YANKED] ### Fixed @@ -32,8 +38,9 @@ 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.3...main +[unreleased]: https://github.com/decompals/slinky/compare/0.2.4...main +[0.2.4]: https://github.com/Decompollaborate/spimdisasm/compare/0.2.3...0.2.4 [0.2.3]: https://github.com/Decompollaborate/spimdisasm/compare/0.2.2...0.2.3 [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 diff --git a/Cargo.lock b/Cargo.lock index 9901d17..42d2b85 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -424,7 +424,7 @@ dependencies = [ [[package]] name = "slinky" -version = "0.2.2" +version = "0.2.4" dependencies = [ "indexmap", "rstest", @@ -435,7 +435,7 @@ dependencies = [ [[package]] name = "slinky-cli" -version = "0.2.2" +version = "0.2.4" dependencies = [ "clap", "regex", diff --git a/slinky-cli/Cargo.toml b/slinky-cli/Cargo.toml index 8982846..7480a86 100644 --- a/slinky-cli/Cargo.toml +++ b/slinky-cli/Cargo.toml @@ -3,7 +3,7 @@ [package] name = "slinky-cli" -version = "0.2.2" +version = "0.2.4" 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.2" } +slinky = { path = "../slinky", version = "0.2.4" } diff --git a/slinky/Cargo.toml b/slinky/Cargo.toml index 3118b5d..c8856af 100644 --- a/slinky/Cargo.toml +++ b/slinky/Cargo.toml @@ -3,7 +3,7 @@ [package] name = "slinky" -version = "0.2.2" +version = "0.2.4" edition = "2021" rust-version = "1.66.1" authors = ["Anghelo Carvajal "] diff --git a/slinky/src/version.rs b/slinky/src/version.rs index 1fbcda8..7663be8 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 = 2; +pub static VERSION_PATCH: u32 = 4; pub static VERSION_TUPLE: (u32, u32, u32) = (VERSION_MAJOR, VERSION_MINOR, VERSION_PATCH);