From 3b3a6e3479032d389954da3d582427c117112d94 Mon Sep 17 00:00:00 2001 From: Jay Oster Date: Thu, 22 Feb 2024 08:56:43 -0800 Subject: [PATCH] Prepare 0.2.0 (#42) --- Cargo.lock | 4 ++-- Cargo.toml | 2 +- MSRV.md | 1 + onlyargs_derive/Cargo.toml | 4 ++-- 4 files changed, 6 insertions(+), 5 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index caec350..eb1e85d 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -70,14 +70,14 @@ checksum = "3fdb12b2476b595f9358c5161aa467c2438859caa136dec86c26fdd2efe17b92" [[package]] name = "onlyargs" -version = "0.1.3" +version = "0.2.0" dependencies = [ "error-iter", ] [[package]] name = "onlyargs_derive" -version = "0.1.4" +version = "0.2.0" dependencies = [ "myn", "onlyargs", diff --git a/Cargo.toml b/Cargo.toml index 93de18d..fa8ffa0 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "onlyargs" description = "Obsessively tiny argument parsing" -version = "0.1.3" +version = "0.2.0" authors = ["Jay Oster "] repository = "https://github.com/parasyte/onlyargs" edition = "2021" diff --git a/MSRV.md b/MSRV.md index 3c53402..260992b 100644 --- a/MSRV.md +++ b/MSRV.md @@ -3,6 +3,7 @@ | `onlyargs` version | `rustc` version | |--------------------|-----------------| | (unreleased) | `1.62.0` | +| `0.2.0` | `1.62.0` | | `0.1.3` | `1.62.0` | | `0.1.2` | `1.62.0` | | `0.1.1` | `1.62.0` | diff --git a/onlyargs_derive/Cargo.toml b/onlyargs_derive/Cargo.toml index 68aac80..7effa91 100644 --- a/onlyargs_derive/Cargo.toml +++ b/onlyargs_derive/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "onlyargs_derive" description = "Obsessively tiny argument parsing derive macro" -version = "0.1.4" +version = "0.2.0" authors = ["Jay Oster "] repository = "https://github.com/parasyte/onlyargs" edition = "2021" @@ -23,7 +23,7 @@ path = "compile_tests/compiler.rs" [dependencies] myn = "0.2.1" -onlyargs = { version = "0.1", path = ".." } +onlyargs = { version = "0.2", path = ".." } [dev-dependencies] trybuild = "1"