From 85336f09b008dd9749e1eb60de40456560bde4ff Mon Sep 17 00:00:00 2001 From: Casey Rodarmor Date: Mon, 15 Apr 2019 23:39:18 -0700 Subject: [PATCH] Bump version: v0.4.1 -> v0.4.2 (#407) --- CHANGELOG.md | 4 ++++ Cargo.lock | 2 +- Cargo.toml | 2 +- justfile | 4 +++- src/run.rs | 3 +-- 5 files changed, 10 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index a92f3a1..60375ec 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # Changelog +## [v0.4.2] - 2019-04-12 +### Changed +- Regex-based lexer replaced with much nicer character-at-a-time lexer (#406) + ## [v0.4.1] - 2019-04-12 ### Changed - Make summary function non-generic (#404) diff --git a/Cargo.lock b/Cargo.lock index b18f411..b8a1d6c 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -190,7 +190,7 @@ dependencies = [ [[package]] name = "just" -version = "0.4.1" +version = "0.4.2" dependencies = [ "ansi_term 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)", "assert_matches 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)", diff --git a/Cargo.toml b/Cargo.toml index aea58b9..63114eb 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "just" -version = "0.4.1" +version = "0.4.2" description = "🤖 Just a command runner" authors = ["Casey Rodarmor "] license = "CC0-1.0" diff --git a/justfile b/justfile index 73bba69..2730006 100755 --- a/justfile +++ b/justfile @@ -39,10 +39,12 @@ watch COMMAND='test': version = `sed -En 's/version[[:space:]]*=[[:space:]]*"([^"]+)"/v\1/p' Cargo.toml | head -1` # publish to crates.io -publish: lint clippy test +publish-check: lint clippy test git branch | grep '* master' git diff --no-ext-diff --quiet --exit-code grep {{version}} CHANGELOG.md + +publish: publish-check cargo publish git tag -a {{version}} -m 'Release {{version}}' git push github {{version}} diff --git a/src/run.rs b/src/run.rs index b510474..1fd66d5 100644 --- a/src/run.rs +++ b/src/run.rs @@ -207,8 +207,7 @@ pub fn run() { let i = argument .char_indices() .skip(1) - .filter(|&(_, c)| c == '=') - .next() + .find(|&(_, c)| c == '=') .unwrap() .0;