From aad4e0fb2bc7c491192c9581c4bde6d805ad5a0c Mon Sep 17 00:00:00 2001 From: Michael Baikov Date: Thu, 24 Aug 2023 12:46:55 -0400 Subject: [PATCH] Prepare to release 0.9.5 + 0.5.5 derive --- Cargo.toml | 2 +- Changelog.md | 3 ++- bpaf_derive/Cargo.toml | 2 +- 3 files changed, 4 insertions(+), 3 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 14b92127..59902470 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -19,7 +19,7 @@ include = [ [dependencies] -bpaf_derive = { path = "./bpaf_derive", version = "=0.5.3", optional = true } +bpaf_derive = { path = "./bpaf_derive", version = "=0.5.5", optional = true } owo-colors = { version = "3.5.0", default-features = false, optional = true } supports-color = { version = "2.0.0", optional = true } diff --git a/Changelog.md b/Changelog.md index a70d74fa..5e0c00a8 100644 --- a/Changelog.md +++ b/Changelog.md @@ -1,7 +1,8 @@ # Change Log -## bpaf [0.9.5] - Unreleased +## bpaf [0.9.5], bpaf_derive [0.5.5] - 2023-08-24 - fancier squashing: parse `-abfoo` as `-a -b=foo` if b is a short argument +- `bpaf_derive`: make sure command aliases are actually working ## bpaf [0.9.4] - 2023-08-08 - add `help` to `ParseFlag` and `ParseArgument` diff --git a/bpaf_derive/Cargo.toml b/bpaf_derive/Cargo.toml index ac1681dc..58b8027a 100644 --- a/bpaf_derive/Cargo.toml +++ b/bpaf_derive/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bpaf_derive" -version = "0.5.3" +version = "0.5.5" edition = "2018" categories = ["command-line-interface"] description = "Derive macros for bpaf Command Line Argument Parser"