Release 1.8.0 (#1398)
- Bump version: 1.7.0 → 1.8.0 - Update changelog - Update dependencies - Update man page
This commit is contained in:
parent
9984d77b31
commit
d74c7a3bd5
@ -1,6 +1,15 @@
|
|||||||
Changelog
|
Changelog
|
||||||
=========
|
=========
|
||||||
|
|
||||||
|
[1.8.0](https://github.com/casey/just/releases/tag/1.8.0) - 2022-11-02
|
||||||
|
----------------------------------------------------------------------
|
||||||
|
|
||||||
|
### Added
|
||||||
|
- Add OS Configuration Attributes (#1387)
|
||||||
|
|
||||||
|
### Misc
|
||||||
|
- Link to sclu1034/vscode-just in readme (#1396)
|
||||||
|
|
||||||
[1.7.0](https://github.com/casey/just/releases/tag/1.7.0) - 2022-10-26
|
[1.7.0](https://github.com/casey/just/releases/tag/1.7.0) - 2022-10-26
|
||||||
----------------------------------------------------------------------
|
----------------------------------------------------------------------
|
||||||
|
|
||||||
|
6
Cargo.lock
generated
6
Cargo.lock
generated
@ -303,7 +303,7 @@ checksum = "4217ad341ebadf8d8e724e264f13e593e0648f5b3e94b3896a5df283be015ecc"
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "just"
|
name = "just"
|
||||||
version = "1.7.0"
|
version = "1.8.0"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"ansi_term",
|
"ansi_term",
|
||||||
"atty",
|
"atty",
|
||||||
@ -392,9 +392,9 @@ dependencies = [
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "once_cell"
|
name = "once_cell"
|
||||||
version = "1.15.0"
|
version = "1.16.0"
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
checksum = "e82dad04139b71a90c080c8463fe0dc7902db5192d939bd0950f074d014339e1"
|
checksum = "86f0b0d4bf799edbc74508c1e8bf170ff5f41238e5f8225603ca7caaae2b7860"
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "output_vt100"
|
name = "output_vt100"
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "just"
|
name = "just"
|
||||||
version = "1.7.0"
|
version = "1.8.0"
|
||||||
description = "🤖 Just a command runner"
|
description = "🤖 Just a command runner"
|
||||||
authors = ["Casey Rodarmor <casey@rodarmor.com>"]
|
authors = ["Casey Rodarmor <casey@rodarmor.com>"]
|
||||||
license = "CC0-1.0"
|
license = "CC0-1.0"
|
||||||
|
17
README.md
17
README.md
@ -2363,6 +2363,23 @@ Before merging a particularly large or gruesome change, Janus should be run to m
|
|||||||
|
|
||||||
The minimum supported Rust version, or MSRV, is Rust 1.47.0.
|
The minimum supported Rust version, or MSRV, is Rust 1.47.0.
|
||||||
|
|
||||||
|
### New Releases
|
||||||
|
|
||||||
|
New releases of `just` are made frequently so that users quickly get access to new features.
|
||||||
|
|
||||||
|
Release commit messages use the following template:
|
||||||
|
|
||||||
|
```
|
||||||
|
Release x.y.z
|
||||||
|
|
||||||
|
- Bump version: x.y.z → x.y.z
|
||||||
|
- Update changelog
|
||||||
|
- Update changelog contributor credits
|
||||||
|
- Update dependencies
|
||||||
|
- Update man page
|
||||||
|
- Update version references in readme
|
||||||
|
```
|
||||||
|
|
||||||
Frequently Asked Questions
|
Frequently Asked Questions
|
||||||
--------------------------
|
--------------------------
|
||||||
|
|
||||||
|
3
justfile
3
justfile
@ -84,6 +84,9 @@ publish:
|
|||||||
cd ../..
|
cd ../..
|
||||||
rm -rf tmp/release
|
rm -rf tmp/release
|
||||||
|
|
||||||
|
readme-version-notes:
|
||||||
|
grep '<sup>master</sup>' README.md
|
||||||
|
|
||||||
push: check
|
push: check
|
||||||
! git branch | grep '* master'
|
! git branch | grep '* master'
|
||||||
git push github
|
git push github
|
||||||
|
@ -1,9 +1,9 @@
|
|||||||
.\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.49.2.
|
.\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.49.2.
|
||||||
.TH JUST "1" "October 2022" "just 1.7.0" "Just Manual"
|
.TH JUST "1" "November 2022" "just 1.8.0" "Just Manual"
|
||||||
.SH NAME
|
.SH NAME
|
||||||
just \- save and run commands
|
just \- save and run commands
|
||||||
.SH DESCRIPTION
|
.SH DESCRIPTION
|
||||||
just 1.7.0
|
just 1.8.0
|
||||||
\- Please see https://github.com/casey/just for more information.
|
\- Please see https://github.com/casey/just for more information.
|
||||||
.SS "USAGE:"
|
.SS "USAGE:"
|
||||||
.IP
|
.IP
|
||||||
|
Loading…
Reference in New Issue
Block a user