Fix licence field in Cargo.toml

This commit is contained in:
2025-11-15 19:41:52 +11:00
parent 967422b727
commit b1a464c79c
2 changed files with 5 additions and 2 deletions

View File

@@ -4,8 +4,8 @@ members = ["jaarg-nostd"]
resolver = "3"
[workspace.package]
version = "0.2.0"
license = "MIT"
version = "0.2.1"
license = "MIT OR Apache-2.0"
edition = "2021"
description = "It can parse your arguments you should use it it's called jaarg"
repository = "https://github.com/gay-pizza/jaarg"

View File

@@ -59,6 +59,9 @@ println!("{file:?} -> {out:?} (number: {number:?})",
<!-- main: -->
v0.2.1:
* Fixed licence field in `Cargo.toml`.
v0.2.0:
* Change licence from `MIT` to `MIT OR Apache-2.0`.
* Moved `Opts::parse_map` into newly introduced `alloc` crate, making it accessible for `no_std` users.