From 4a244c06945df70b1c6264b70513d5a26573f682 Mon Sep 17 00:00:00 2001 From: Jake Deichert Date: Tue, 29 Dec 2020 14:21:53 -0500 Subject: [PATCH] Publish v0.10.0 --- CHANGELOG.md | 9 +++++++++ Cargo.lock | 2 +- Cargo.toml | 2 +- 3 files changed, 11 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index e2dbd54..4383a8c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,12 +3,21 @@ ## UNRELEASED + + + +## v0.10.0 (2020-12-29) + ### Added * Allow marking named flags (previously called optional flags) as required [#74](https://github.com/jakedeichert/mask/pull/74) ([@cherusk](https://github.com/cherusk)) * Automatically bump Homebrew formula on new release [#74](https://github.com/jakedeichert/mask/pull/64) ([@vladimyr](https://github.com/vladimyr)) +### Fixed + +* Fix issue where command before level 1 heading was ignored [#77](https://github.com/jakedeichert/mask/pull/77) + diff --git a/Cargo.lock b/Cargo.lock index cecf327..bed67ec 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -256,7 +256,7 @@ dependencies = [ [[package]] name = "mask" -version = "0.9.0" +version = "0.10.0" dependencies = [ "assert_cmd 0.11.1 (registry+https://github.com/rust-lang/crates.io-index)", "assert_fs 0.11.3 (registry+https://github.com/rust-lang/crates.io-index)", diff --git a/Cargo.toml b/Cargo.toml index 3011e22..5d04b6b 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "mask" -version = "0.9.0" +version = "0.10.0" description = "A CLI task runner defined by a simple markdown file" authors = ["Jake Deichert "] repository = "https://github.com/jakedeichert/mask"