Skip to content

Commit

Permalink
version bump
Browse files Browse the repository at this point in the history
  • Loading branch information
AngheloAlf committed Aug 17, 2024
1 parent 543bed3 commit 20f776d
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 8 deletions.
5 changes: 4 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.3.0] - 2024-08-17

### Added

- Add new top-level attribute for the file format: `symbol_assignments`.
Expand Down Expand Up @@ -99,8 +101,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.5...main
[unreleased]: https://github.com/decompals/slinky/compare/0.3.0...main

[0.3.0]: https://github.com/Decompollaborate/spimdisasm/compare/0.2.5...0.3.0
[0.2.5]: https://github.com/Decompollaborate/spimdisasm/compare/0.2.4...0.2.5
[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
Expand Down
4 changes: 2 additions & 2 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

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.5"
version = "0.3.0"
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.5" }
slinky = { path = "../slinky", version = "0.3.0" }
2 changes: 1 addition & 1 deletion slinky/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

[package]
name = "slinky"
version = "0.2.5"
version = "0.3.0"
edition = "2021"
rust-version = "1.66.1"
authors = ["Anghelo Carvajal <[email protected]>"]
Expand Down
4 changes: 2 additions & 2 deletions slinky/src/version.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
/* SPDX-License-Identifier: MIT */

pub static VERSION_MAJOR: u32 = 0;
pub static VERSION_MINOR: u32 = 2;
pub static VERSION_PATCH: u32 = 5;
pub static VERSION_MINOR: u32 = 3;
pub static VERSION_PATCH: u32 = 0;

pub static VERSION_TUPLE: (u32, u32, u32) = (VERSION_MAJOR, VERSION_MINOR, VERSION_PATCH);

0 comments on commit 20f776d

Please sign in to comment.