Skip to content

Commit

Permalink
Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
AngheloAlf committed Jul 15, 2024
1 parent bb45f56 commit 692a67e
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 7 deletions.
13 changes: 10 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
4 changes: 2 additions & 2 deletions slinky-cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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 <[email protected]>"]
Expand All @@ -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" }
2 changes: 1 addition & 1 deletion slinky/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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 <[email protected]>"]
license = "MIT"
description = "Linker script generator for decompilation and modding projects"
Expand Down
2 changes: 1 addition & 1 deletion slinky/src/version.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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);

0 comments on commit 692a67e

Please sign in to comment.