From b1a464c79ca44cae5a0d2db64645de6b5d54327b Mon Sep 17 00:00:00 2001 From: a dinosaur Date: Sat, 15 Nov 2025 19:41:52 +1100 Subject: [PATCH] Fix licence field in Cargo.toml --- Cargo.toml | 4 ++-- README.md | 3 +++ 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 6b2d483..233335d 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -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" diff --git a/README.md b/README.md index 81e26fb..b2019b6 100644 --- a/README.md +++ b/README.md @@ -59,6 +59,9 @@ println!("{file:?} -> {out:?} (number: {number:?})", +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.