Release v0.1.2
- Bump version: v0.1.2 -> v0.2.3 - Update man page - Update changelog - Update release recipe type: release
This commit is contained in:
parent
03a9935164
commit
685883f026
|
@ -2,9 +2,10 @@ Changelog
|
||||||
=========
|
=========
|
||||||
|
|
||||||
|
|
||||||
UNRELEASED - 2020-04-08
|
[v0.1.2](https://github.com/casey/intermodal/releases/tag/v0.1.2) - 2020-04-08
|
||||||
-----------------------
|
------------------------------------------------------------------------------
|
||||||
- :wrench: [`xxxxxxxxxxxx`](https://github.com/casey/intermodal/commits/master) Skip fixup commits in changelog - _Casey Rodarmor <casey@rodarmor.com>_
|
- :bookmark: [`xxxxxxxxxxxx`](https://github.com/casey/intermodal/commits/master) Release v0.1.2 - _Casey Rodarmor <casey@rodarmor.com>_
|
||||||
|
- :wrench: [`03a993516481`](https://github.com/casey/intermodal/commit/03a99351648173aa12def1a8f9b9d9ddfe45bbc9) Skip fixup commits in changelog - _Casey Rodarmor <casey@rodarmor.com>_
|
||||||
- :art: [`a395052f7c22`](https://github.com/casey/intermodal/commit/a395052f7c226a934cf1b0d75294b1a3146cbeae) Deduplicate progress style string - _Casey Rodarmor <casey@rodarmor.com>_
|
- :art: [`a395052f7c22`](https://github.com/casey/intermodal/commit/a395052f7c226a934cf1b0d75294b1a3146cbeae) Deduplicate progress style string - _Casey Rodarmor <casey@rodarmor.com>_
|
||||||
- :wrench: [`db2a2ac4f556`](https://github.com/casey/intermodal/commit/db2a2ac4f556e7a1a450f9a18d212f082d18fb9d) Refactor demo recipe in justfile into multiple recipes - _Casey Rodarmor <casey@rodarmor.com>_
|
- :wrench: [`db2a2ac4f556`](https://github.com/casey/intermodal/commit/db2a2ac4f556e7a1a450f9a18d212f082d18fb9d) Refactor demo recipe in justfile into multiple recipes - _Casey Rodarmor <casey@rodarmor.com>_
|
||||||
- :zap: [`92748f9fd4e6`](https://github.com/casey/intermodal/commit/92748f9fd4e6e65c25e82f2a6e41a0b9b82cf4dd) Make changelog generator strict ([#341](https://github.com/casey/intermodal/pull/341)) - _Casey Rodarmor <casey@rodarmor.com>_
|
- :zap: [`92748f9fd4e6`](https://github.com/casey/intermodal/commit/92748f9fd4e6e65c25e82f2a6e41a0b9b82cf4dd) Make changelog generator strict ([#341](https://github.com/casey/intermodal/pull/341)) - _Casey Rodarmor <casey@rodarmor.com>_
|
||||||
|
|
2
Cargo.lock
generated
2
Cargo.lock
generated
|
@ -398,7 +398,7 @@ dependencies = [
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "imdl"
|
name = "imdl"
|
||||||
version = "0.1.1"
|
version = "0.1.2"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"ansi_term 0.12.1",
|
"ansi_term 0.12.1",
|
||||||
"atty",
|
"atty",
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "imdl"
|
name = "imdl"
|
||||||
version = "0.1.1"
|
version = "0.1.2"
|
||||||
description = "📦 A 40' shipping container for the internet"
|
description = "📦 A 40' shipping container for the internet"
|
||||||
authors = ["Casey Rodarmor <casey@rodarmor.com>"]
|
authors = ["Casey Rodarmor <casey@rodarmor.com>"]
|
||||||
license = "CC0-1.0"
|
license = "CC0-1.0"
|
||||||
|
|
7
justfile
7
justfile
|
@ -111,10 +111,15 @@ publish-check: check check-man
|
||||||
grep {{version}} CHANGELOG.md
|
grep {{version}} CHANGELOG.md
|
||||||
|
|
||||||
publish: publish-check
|
publish: publish-check
|
||||||
git branch | grep '* master'
|
#!/usr/bin/env bash
|
||||||
|
set -euxo pipefail
|
||||||
|
while ! hub ci-status --verbose; do
|
||||||
|
sleep 5
|
||||||
|
done
|
||||||
git tag -a {{version}} -m 'Release {{version}}'
|
git tag -a {{version}} -m 'Release {{version}}'
|
||||||
git push github {{version}}
|
git push github {{version}}
|
||||||
cargo publish
|
cargo publish
|
||||||
|
just done
|
||||||
|
|
||||||
changelog-update:
|
changelog-update:
|
||||||
cargo run --package changelog update
|
cargo run --package changelog update
|
||||||
|
|
17
man/imdl.1
17
man/imdl.1
|
@ -1,9 +1,9 @@
|
||||||
.\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.47.11.
|
.\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.47.11.
|
||||||
.TH IMDL "1" "March 2020" "imdl v0.1.1" "IMDL MANUAL"
|
.TH IMDL "1" "April 2020" "imdl v0.1.2" "IMDL MANUAL"
|
||||||
.SH NAME
|
.SH NAME
|
||||||
imdl \- BitTorrent metainfo utility
|
imdl \- BitTorrent metainfo utility
|
||||||
.SH DESCRIPTION
|
.SH DESCRIPTION
|
||||||
imdl v0.1.1
|
imdl v0.1.2
|
||||||
Casey Rodarmor <casey@rodarmor.com>
|
Casey Rodarmor <casey@rodarmor.com>
|
||||||
|
|
||||||
A 40' shipping container for the internet \- https://github.com/casey/intermodal
|
A 40' shipping container for the internet \- https://github.com/casey/intermodal
|
||||||
|
@ -16,21 +16,16 @@ imdl [FLAGS] [OPTIONS] <SUBCOMMAND>
|
||||||
Print help message.
|
Print help message.
|
||||||
.TP
|
.TP
|
||||||
\fB\-u\fR, \fB\-\-unstable\fR
|
\fB\-u\fR, \fB\-\-unstable\fR
|
||||||
Enable unstable features. To avoid premature stabilization and excessive
|
Enable unstable features. To avoid premature stabilization and excessive version churn, unstable features are unavailable unless this flag is set. Unstable features are not bound by
|
||||||
version churn, unstable features are unavailable unless this flag is set.
|
semantic versioning stability guarantees, and may be changed or removed at any time.
|
||||||
Unstable features are not bound by semantic versioning stability guarantees,
|
|
||||||
and may be changed or removed at any time.
|
|
||||||
.TP
|
.TP
|
||||||
\fB\-V\fR, \fB\-\-version\fR
|
\fB\-V\fR, \fB\-\-version\fR
|
||||||
Print version number.
|
Print version number.
|
||||||
.SS "OPTIONS:"
|
.SS "OPTIONS:"
|
||||||
.TP
|
.TP
|
||||||
\fB\-\-color\fR <WHEN>
|
\fB\-\-color\fR <WHEN>
|
||||||
Print colorful output according to `WHEN`. When `auto`, the default,
|
Print colorful output according to `WHEN`. When `auto`, the default, colored output is only enabled if imdl detects that it is connected to a terminal, the `NO_COLOR` environment
|
||||||
colored output is only enabled if imdl detects that it is connected to a
|
variable is not set, and the `TERM` environment variable is not set to `dumb`. [default: auto] [possible values: auto, always, never]
|
||||||
terminal, the `NO_COLOR` environment variable is not set, and the `TERM`
|
|
||||||
environment variable is not set to `dumb`. [default: auto] [possible
|
|
||||||
values: auto, always, never]
|
|
||||||
.SS "SUBCOMMANDS:"
|
.SS "SUBCOMMANDS:"
|
||||||
.TP
|
.TP
|
||||||
completions
|
completions
|
||||||
|
|
Loading…
Reference in New Issue
Block a user