Skip to content

Commit

Permalink
Release 1.3.0 (#1282)
Browse files Browse the repository at this point in the history
- Bump version: 1.2.0 → 1.3.0
- Update changelog
- Update dependencies
- Update man page
  • Loading branch information
casey authored Jul 25, 2022
1 parent 2af8336 commit 44ae90f
Show file tree
Hide file tree
Showing 4 changed files with 98 additions and 57 deletions.
42 changes: 42 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,48 @@
Changelog
=========

[1.3.0](https://github.com/casey/just/releases/tag/1.3.0) - 2022-7-25
---------------------------------------------------------------------

### Added
- Add `/` operator (#1237)

### Fixed
- Fix multibyte codepoint crash (#1243)

### Misc
- Update just-install reference on README.md (#1275)
- Split Recipe::run into Recipe::{run_shebang,run_linewise} (#1270)
- Add asdf package to readme(#1264)
- Add mdbook deps for build-book recipe (#1258) (#1259)
- Fix typo: argumant -> argument (#1257)
- Improve error message if `if` is missing the `else` (#1252)
- Explain how to pass arguments of a command to a dependency (#1254)
- Update Chinese translation of README.md (#1253)
- Improvements to Sublime syntax file (#1250)
- Prevent unbounded recursion when parsing expressions (#1248)
- Publish to snap store (#1245)
- Restore fuzz test harness (#1246)
- Add just-install to README file (#1241)
- Fix dead readme link (#1240)
- Do `use super::*;` instead of `use crate::common::*;` (#1239)
- Fix readme punctuation (#1235)
- Add argument splitting section to readme (#1230)
- Add notes about environment variables to readme (#1229)
- Fix book links (#1227)
- Add nushell README.md (#1224)
- Use absolute links in readme (#1223)
- Copy changelog into manual (#1222)
- Translate Chinese manual introduction and title (#1220)
- Build Chinese language user manual (#1219)
- Update Chinese translation of README.md (#1218)
- Translate all of README.md into Chinese (#1217)
- Translate all of features in README into Chinese (#1215)
- Make link to examples directory absolute (#1213)
- Translate part of features in README into Chinese (#1211)
- Add JetBrains IDE plugin to readme (#1209)
- Translate features chapter of readme to Chinese (#1208)

[1.2.0](https://github.com/casey/just/releases/tag/1.2.0) - 2022-5-31
---------------------------------------------------------------------

Expand Down
94 changes: 47 additions & 47 deletions 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 = "1.2.0"
version = "1.3.0"
description = "🤖 Just a command runner"
authors = ["Casey Rodarmor <[email protected]>"]
license = "CC0-1.0"
Expand Down
17 changes: 8 additions & 9 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.48.5.
.TH JUST "1" "May 2022" "just 1.2.0" "Just Manual"
.\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.49.2.
.TH JUST "1" "July 2022" "just 1.3.0" "Just Manual"
.SH NAME
just \- save and run commands
.SH DESCRIPTION
just 1.2.0
just 1.3.0
\- Please see https://github.com/casey/just for more information.
.SS "USAGE:"
.IP
Expand All @@ -14,12 +14,12 @@ just [FLAGS] [OPTIONS] [\-\-] [ARGUMENTS]...
Print changelog
.TP
\fB\-\-check\fR
Run `\-\-fmt` in 'check' mode. Exits with 0 if justfile is formatted correctly. Exits with
1 and prints a diff if formatting is required.
Run `\-\-fmt` in 'check' mode. Exits with 0 if justfile is formatted correctly. Exits with 1
and prints a diff if formatting is required.
.TP
\fB\-\-choose\fR
Select one or more recipes to run using a binary. If `\-\-chooser` is not passed the
chooser defaults to the value of $JUST_CHOOSER, falling back to `fzf`
Select one or more recipes to run using a binary. If `\-\-chooser` is not passed the chooser
defaults to the value of $JUST_CHOOSER, falling back to `fzf`
.TP
\fB\-\-clear\-shell\-args\fR
Clear shell arguments
Expand Down Expand Up @@ -98,9 +98,8 @@ Run an arbitrary command with the working directory, `.env`, overrides, and expo
\fB\-\-completions\fR <SHELL>
.IP
Print shell completion script for <SHELL> [possible values: zsh, bash, fish, powershell, elvish]
.HP
.TP
\fB\-\-dotenv\-filename\fR <DOTENV\-FILENAME>
.IP
Search for environment file named <DOTENV\-FILENAME> instead of `.env`
.TP
\fB\-\-dotenv\-path\fR <DOTENV\-PATH>
Expand Down

0 comments on commit 44ae90f

Please sign in to comment.