release: watchexec-cli v1.22.0 (#538)

Co-authored-by: github-actions <github-actions@github.com>
This commit is contained in:
github-actions[bot] 2023-03-18 15:06:47 +00:00 committed by Félix Saparelli
parent a3ebfcceef
commit 645d87d9d6
No known key found for this signature in database
10 changed files with 20 additions and 14 deletions

View File

@ -45,7 +45,7 @@ jobs:
release_commit: ${{ github.event.head_commit.message }}
run: |
set -euxo pipefail
release_pr=$(head -n1 <<< "${release_commit:-}" | grep -oP '(?<=[(]#)\d+(?=[)])')
release_pr=538
if [[ -z "$release_pr" ]]; then
echo "::set-output name=notes_json::null"
exit
@ -249,7 +249,7 @@ jobs:
cp "$bin" "target/release/" # workaround for cargo-deb silliness with targets
cp "$bin" "$dst/"
cp -r crates/cli/README.md LICENSE completions doc/{logo.svg,watchexec.1{,.html}} "$dst/"
cp -r crates/cli/README.md LICENSE completions doc/{logo.svg,watchexec.1{,.*}} "$dst/"
- name: Archive (tar)
if: '! startsWith(matrix.name, ''windows-'')'

View File

@ -3,8 +3,8 @@ message: |
If you use this software, please cite it using these metadata.
title: "Watchexec: a tool to react to filesystem changes, and a crate ecosystem to power it"
version: "1.21.1"
date-released: 2023-02-14
version: "1.22.0"
date-released: 2023-03-18
repository-code: https://github.com/watchexec/watchexec
license: Apache-2.0

4
Cargo.lock generated
View File

@ -3827,7 +3827,7 @@ dependencies = [
[[package]]
name = "watchexec-cli"
version = "1.21.1"
version = "1.22.0"
dependencies = [
"argfile",
"bosion",
@ -3904,7 +3904,7 @@ dependencies = [
[[package]]
name = "watchexec-filterer-tagged"
version = "0.2.0"
version = "0.3.0"
dependencies = [
"futures",
"globset",

View File

@ -1,6 +1,6 @@
[package]
name = "watchexec-cli"
version = "1.21.1"
version = "1.22.0"
authors = ["Félix Saparelli <felix@passcod.name>", "Matt Green <mattgreenrocks@gmail.com>"]
license = "Apache-2.0"
@ -134,8 +134,10 @@ depends = "libc6, libgcc-s1" # not needed for musl, but see below
assets = [
["../../target/release/watchexec", "usr/bin/watchexec", "755"],
["README.md", "usr/share/doc/watchexec/README", "644"],
["../../doc/watchexec.1.html", "usr/share/doc/watchexec/watchexec.1.html", "644"],
["../../doc/watchexec.1.md", "usr/share/doc/watchexec/watchexec.1.md", "644"],
["../../doc/watchexec.1", "usr/share/man/man1/watchexec.1.html", "644"],
["../../completions/bash", "usr/share/bash-completion/completions/watchexec", "644"],
["../../completions/fish", "usr/share/fish/completions/watchexec.fish", "644"],
["../../completions/zsh", "usr/share/zsh/site-functions/_watchexec", "644"],
["../../doc/logo.svg", "usr/share/icons/hicolor/scalable/apps/watchexec.svg", "644"],
]
@ -144,8 +146,10 @@ assets = [
assets = [
{ source = "../../target/release/watchexec", dest = "/usr/bin/watchexec", mode = "755" },
{ source = "README.md", dest = "/usr/share/doc/watchexec/README", mode = "644", doc = true },
{ source = "../../doc/watchexec.1.html", dest = "/usr/share/doc/watchexec/watchexec.1.html", mode = "644", doc = true },
{ source = "../../doc/watchexec.1.md", dest = "/usr/share/doc/watchexec/watchexec.1.md", mode = "644", doc = true },
{ source = "../../doc/watchexec.1", dest = "/usr/share/man/man1/watchexec.1.html", mode = "644" },
{ source = "../../completions/bash", dest = "/usr/share/bash-completion/completions/watchexec", mode = "644" },
{ source = "../../completions/fish", dest = "/usr/share/fish/completions/watchexec.fish", mode = "644" },
{ source = "../../completions/zsh", dest = "/usr/share/zsh/site-functions/_watchexec", mode = "644" },
{ source = "../../doc/logo.svg", dest = "/usr/share/icons/hicolor/scalable/apps/watchexec.svg", mode = "644" },
# set conf = true for config file when that lands

View File

@ -3,7 +3,7 @@
<assemblyIdentity
type="win32"
name="Watchexec.Cli.watchexec"
version="1.21.1.0"
version="1.22.0.0"
/>
<trustInfo>

View File

@ -2,6 +2,8 @@
## Next (YYYY-MM-DD)
## v0.3.0 (2023-03-18)
- Ditch MSRV policy. The `rust-version` indication will remain, for the minimum estimated Rust version for the code features used in the crate's own code, but dependencies may have already moved on. From now on, only latest stable is assumed and tested for. ([#510](https://github.com/watchexec/watchexec/pull/510))
## v0.2.0 (2023-01-09)

View File

@ -1,6 +1,6 @@
[package]
name = "watchexec-filterer-tagged"
version = "0.2.0"
version = "0.3.0"
authors = ["Félix Saparelli <felix@passcod.name>"]
license = "Apache-2.0"

View File

@ -1,6 +1,6 @@
.ie \n(.g .ds Aq \(aq
.el .ds Aq '
.TH watchexec 1 "watchexec 1.21.1"
.TH watchexec 1 "watchexec 1.22.0"
.SH NAME
watchexec \- Execute commands when watched files change
.SH SYNOPSIS
@ -468,6 +468,6 @@ Behaviour depends on the value of \*(Aq\-\-shell\*(Aq: for all except \*(Aqnone\
.SH EXTRA
Use @argfile as first argument to load arguments from the file \*(Aqargfile\*(Aq (one argument per line) which will be inserted in place of the @argfile (further arguments on the CLI will override or add onto those in the file).
.SH VERSION
v1.21.1
v1.22.0
.SH AUTHORS
Félix Saparelli <felix@passcod.name>, Matt Green <mattgreenrocks@gmail.com>

View File

@ -667,7 +667,7 @@ file).
# VERSION
v1.21.1
v1.22.0
# AUTHORS

Binary file not shown.