Skip to content

Commit

Permalink
Bump version: v0.4.1 -> v0.4.2 (#407)
Browse files Browse the repository at this point in the history
  • Loading branch information
casey authored Apr 16, 2019
1 parent 596ea34 commit 85336f0
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 5 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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)
Expand Down
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "just"
version = "0.4.1"
version = "0.4.2"
description = "🤖 Just a command runner"
authors = ["Casey Rodarmor <casey@rodarmor.com>"]
license = "CC0-1.0"
Expand Down
4 changes: 3 additions & 1 deletion justfile
Original file line number Diff line number Diff line change
Expand Up @@ -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}}
Expand Down
3 changes: 1 addition & 2 deletions src/run.rs
Original file line number Diff line number Diff line change
Expand Up @@ -207,8 +207,7 @@ pub fn run() {
let i = argument
.char_indices()
.skip(1)
.filter(|&(_, c)| c == '=')
.next()
.find(|&(_, c)| c == '=')
.unwrap()
.0;

Expand Down

0 comments on commit 85336f0

Please sign in to comment.