Skip to content

Commit

Permalink
Release v0.5.7 (#591)
Browse files Browse the repository at this point in the history
- Bump version: v0.5.7 -> v0.5.8
- Update changelog
- Update man page
- Update config test
- Update dependencies
  • Loading branch information
casey authored Feb 6, 2020
1 parent b1ebf63 commit aceee3e
Show file tree
Hide file tree
Showing 6 changed files with 35 additions and 19 deletions.
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,17 @@ Changelog
=========


[v0.5.8] - 2020-1-28
--------------------

## Changed
- Only use `cygpath` on windows if present (#586)

## Misc
- Improve comments in justfile (#588)
- Remove unused dependencies (#587)


[v0.5.7] - 2020-1-28
--------------------

Expand Down
26 changes: 13 additions & 13 deletions Cargo.lock

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

6 changes: 3 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "just"
version = "0.5.7"
version = "0.5.8"
description = "🤖 Just a command runner"
authors = ["Casey Rodarmor <[email protected]>"]
license = "CC0-1.0"
Expand All @@ -10,9 +10,9 @@ readme = "crates-io-readme.md"
edition = "2018"

[features]
default = []
default = []
help4help2man = []
summary = []
summary = []

[dependencies]
ansi_term = "0.12"
Expand Down
5 changes: 5 additions & 0 deletions justfile
Original file line number Diff line number Diff line change
Expand Up @@ -50,8 +50,13 @@ view-man: man

version := `sed -En 's/version[[:space:]]*=[[:space:]]*"([^"]+)"/v\1/p' Cargo.toml | head -1`

# add git log messages to changelog
changes:
git log --pretty=format:%s >> CHANGELOG.md

# check run before publishing
publish-check: lint clippy test man
cargo outdated --exit-code 1
git branch | grep '* master'
git diff --no-ext-diff --quiet --exit-code
grep {{version}} CHANGELOG.md
Expand Down
4 changes: 2 additions & 2 deletions man/just.1
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
.\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.47.11.
.TH JUST "1" "January 2020" "just 0.5.7" "JUST MANUAL"
.TH JUST "1" "February 2020" "just 0.5.8" "JUST MANUAL"
.SH NAME
just \- save and run commands
.SH DESCRIPTION
just 0.5.7
just 0.5.8
\- Please see https://github.com/casey/just for more information.
.SS "USAGE:"
.IP
Expand Down
2 changes: 1 addition & 1 deletion src/config.rs
Original file line number Diff line number Diff line change
Expand Up @@ -647,7 +647,7 @@ mod tests {
// proper tests for all the flags, but this will do for now.
#[test]
fn help() {
const EXPECTED_HELP: &str = "just v0.5.7
const EXPECTED_HELP: &str = "just v0.5.8
Casey Rodarmor <[email protected]>
🤖 Just a command runner - https://github.com/casey/just
Expand Down

0 comments on commit aceee3e

Please sign in to comment.