Skip to content

Commit

Permalink
Release 0.10.0 (#934)
Browse files Browse the repository at this point in the history
- Bump version: 0.9.9 → 0.10.0
- Update changelog
- Update config test
- Update dependencies
- Update man page
  • Loading branch information
casey authored Aug 3, 2021
1 parent 5bb4b4a commit 289acca
Show file tree
Hide file tree
Showing 5 changed files with 37 additions and 14 deletions.
20 changes: 20 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,26 @@
Changelog
=========

[0.10.0](https://github.com/casey/just/releases/tag/0.10.0) - 2021-8-2
----------------------------------------------------------------------

### Changed
- Warn if `.env` file is loaded in `dotenv-load` isn't explicitly set (#925)

### Added
- Add `--changelog` subcommand (#932)
- Support `.justfile` as an alternative to `justfile` (#931)

### Misc
- Use cargo-limit for all recipes (#928)
- Fix colors (#927)
- Use ColorDisplay trait to print objects to the terminal (#926)
- Deduplicate recipe parsing (#923)
- Move subcommand functions into Subcommand (#918)
- Check GitHub Actions workflow with actionlint (#921)
- Add loader and refactor errors (#917)
- Rename: Module → Ast (#915)

[0.9.9](https://github.com/casey/just/releases/tag/0.9.9) - 2021-7-22
---------------------------------------------------------------------

Expand Down
21 changes: 12 additions & 9 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.9.9"
version = "0.10.0"
description = "🤖 Just a command runner"
authors = ["Casey Rodarmor <[email protected]>"]
license = "CC0-1.0"
Expand Down Expand Up @@ -45,7 +45,7 @@ version = "0.21.0"
features = ["derive"]

[dev-dependencies]
cradle = "0.0.13"
cradle = "0.0.16"
executable-path = "1.0.0"
pretty_assertions = "0.7.0"
regex = "1.5.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.15.
.TH JUST "1" "July 2021" "just 0.9.9" "Just Manual"
.TH JUST "1" "July 2021" "just 0.10.0" "Just Manual"
.SH NAME
just \- save and run commands
.SH DESCRIPTION
just 0.9.9
just 0.10.0
\- 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 @@ -566,7 +566,7 @@ mod tests {
// have proper tests for all the flags, but this will do for now.
#[test]
fn help() {
const EXPECTED_HELP: &str = "just 0.9.9
const EXPECTED_HELP: &str = "just 0.10.0
Casey Rodarmor <[email protected]>
🤖 Just a command runner \
- https://github.com/casey/just
Expand Down

0 comments on commit 289acca

Please sign in to comment.