Skip to content

Commit

Permalink
Release v0.8.2 (#715)
Browse files Browse the repository at this point in the history
- Bump version: 0.8.1 → 0.8.2
- Update dependencies
- Update changelog
- Update man page
- Update config test
  • Loading branch information
casey authored Oct 27, 2020
1 parent 19f7ad0 commit 70768eb
Show file tree
Hide file tree
Showing 5 changed files with 30 additions and 23 deletions.
16 changes: 16 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,21 @@
Changelog
=========

[v0.8.2] - 2020-10-26
---------------------

### Added
- Add conditional expressions (#714)

### Fixed
- Allow completing variables and recipes after `--set` in zsh completion script (#697)

### Misc
- Add Parser::forbid (#712)
- Automatically track expected tokens while parsing (#711)
- Document feature flags in Cargo.toml (#709)


[v0.8.1] - 2020-10-15
---------------------

Expand All @@ -15,6 +30,7 @@ Changelog
- Fix build fix (#693)
- Fix readme documentation for ignoring errors (#692)


[v0.8.0] - 2020-10-3
--------------------

Expand Down
27 changes: 9 additions & 18 deletions Cargo.lock

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

4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "just"
version = "0.8.1"
version = "0.8.2"
description = "🤖 Just a command runner"
authors = ["Casey Rodarmor <[email protected]>"]
license = "CC0-1.0"
Expand All @@ -17,7 +17,7 @@ clap = "2.33.0"
derivative = "2.0.0"
dotenv = "0.15.0"
edit-distance = "2.0.0"
env_logger = "0.7.0"
env_logger = "0.8.0"
lazy_static = "1.0.0"
libc = "0.2.0"
log = "0.4.4"
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.16.
.TH JUST "1" "October 2020" "just 0.8.1" "Just Manual"
.TH JUST "1" "October 2020" "just 0.8.2" "Just Manual"
.SH NAME
just \- save and run commands
.SH DESCRIPTION
just 0.8.1
just 0.8.2
\- 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 @@ -809,7 +809,7 @@ mod tests {
// have proper tests for all the flags, but this will do for now.
#[test]
fn help() {
const EXPECTED_HELP: &str = "just v0.8.1
const EXPECTED_HELP: &str = "just v0.8.2
Casey Rodarmor <[email protected]>
🤖 Just a command runner \
- https://github.com/casey/just
Expand Down

0 comments on commit 70768eb

Please sign in to comment.