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
|
||||
-----------------------
|
||||
- :wrench: [`xxxxxxxxxxxx`](https://github.com/casey/intermodal/commits/master) Skip fixup commits in changelog - _Casey Rodarmor <casey@rodarmor.com>_
|
||||
[v0.1.2](https://github.com/casey/intermodal/releases/tag/v0.1.2) - 2020-04-08
|
||||
------------------------------------------------------------------------------
|
||||
- :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>_
|
||||
- :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>_
|
||||
|
|
2
Cargo.lock
generated
2
Cargo.lock
generated
|
@ -398,7 +398,7 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "imdl"
|
||||
version = "0.1.1"
|
||||
version = "0.1.2"
|
||||
dependencies = [
|
||||
"ansi_term 0.12.1",
|
||||
"atty",
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
[package]
|
||||
name = "imdl"
|
||||
version = "0.1.1"
|
||||
version = "0.1.2"
|
||||
description = "📦 A 40' shipping container for the internet"
|
||||
authors = ["Casey Rodarmor <casey@rodarmor.com>"]
|
||||
license = "CC0-1.0"
|
||||
|
|
7
justfile
7
justfile
|
@ -111,10 +111,15 @@ publish-check: check check-man
|
|||
grep {{version}} CHANGELOG.md
|
||||
|
||||
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 push github {{version}}
|
||||
cargo publish
|
||||
just done
|
||||
|
||||
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.
|
||||
.TH IMDL "1" "March 2020" "imdl v0.1.1" "IMDL MANUAL"
|
||||
.TH IMDL "1" "April 2020" "imdl v0.1.2" "IMDL MANUAL"
|
||||
.SH NAME
|
||||
imdl \- BitTorrent metainfo utility
|
||||
.SH DESCRIPTION
|
||||
imdl v0.1.1
|
||||
imdl v0.1.2
|
||||
Casey Rodarmor <casey@rodarmor.com>
|
||||
|
||||
A 40' shipping container for the internet \- https://github.com/casey/intermodal
|
||||
|
@ -16,21 +16,16 @@ imdl [FLAGS] [OPTIONS] <SUBCOMMAND>
|
|||
Print help message.
|
||||
.TP
|
||||
\fB\-u\fR, \fB\-\-unstable\fR
|
||||
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 semantic versioning stability guarantees,
|
||||
and may be changed or removed at any time.
|
||||
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
|
||||
semantic versioning stability guarantees, and may be changed or removed at any time.
|
||||
.TP
|
||||
\fB\-V\fR, \fB\-\-version\fR
|
||||
Print version number.
|
||||
.SS "OPTIONS:"
|
||||
.TP
|
||||
\fB\-\-color\fR <WHEN>
|
||||
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 variable is not set, and the `TERM`
|
||||
environment variable is not set to `dumb`. [default: auto] [possible
|
||||
values: auto, always, never]
|
||||
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
|
||||
variable is not set, and the `TERM` environment variable is not set to `dumb`. [default: auto] [possible values: auto, always, never]
|
||||
.SS "SUBCOMMANDS:"
|
||||
.TP
|
||||
completions
|
||||
|
|
Loading…
Reference in New Issue
Block a user