Release v0.1.3

- Bump version: 0.1.2 -> 0.1.3
- Update changelog
- Update book
- Add `update` recipe

type: release
This commit is contained in:
Casey Rodarmor 2020-04-09 16:43:42 -07:00
parent 268c62b66d
commit 8e6a2b0034
No known key found for this signature in database
GPG Key ID: 556186B153EC6FE0
22 changed files with 39 additions and 35 deletions

View File

@ -2,9 +2,10 @@ Changelog
========= =========
UNRELEASED - 2020-04-09 [v0.1.3](https://github.com/casey/intermodal/releases/tag/v0.1.3) - 2020-04-10
----------------------- ------------------------------------------------------------------------------
- :books: [`xxxxxxxxxxxx`](https://github.com/casey/intermodal/commits/master) Add `bin/man` command for generating man pages - _Casey Rodarmor <casey@rodarmor.com>_ - :bookmark: [`xxxxxxxxxxxx`](https://github.com/casey/intermodal/commits/master) Release v0.1.3 - _Casey Rodarmor <casey@rodarmor.com>_
- :books: [`268c62b66d46`](https://github.com/casey/intermodal/commit/268c62b66d46e033786612ce1e85c3c8ee21933a) Add `bin/man` command for generating man pages - _Casey Rodarmor <casey@rodarmor.com>_
- :books: [`14fff1d888a3`](https://github.com/casey/intermodal/commit/14fff1d888a3d4aebd88059feacde5c665019f30) Make smaller demo for readme - _Casey Rodarmor <casey@rodarmor.com>_ - :books: [`14fff1d888a3`](https://github.com/casey/intermodal/commit/14fff1d888a3d4aebd88059feacde5c665019f30) Make smaller demo for readme - _Casey Rodarmor <casey@rodarmor.com>_
- :books: [`4f8b6a212e80`](https://github.com/casey/intermodal/commit/4f8b6a212e8099ebfcf14600ce92863583758231) Improve demo GIF - _Casey Rodarmor <casey@rodarmor.com>_ - :books: [`4f8b6a212e80`](https://github.com/casey/intermodal/commit/4f8b6a212e8099ebfcf14600ce92863583758231) Improve demo GIF - _Casey Rodarmor <casey@rodarmor.com>_

24
Cargo.lock generated
View File

@ -398,7 +398,7 @@ dependencies = [
[[package]] [[package]]
name = "imdl" name = "imdl"
version = "0.1.2" version = "0.1.3"
dependencies = [ dependencies = [
"ansi_term 0.12.1", "ansi_term 0.12.1",
"atty", "atty",
@ -676,9 +676,9 @@ dependencies = [
[[package]] [[package]]
name = "proc-macro-error" name = "proc-macro-error"
version = "0.4.12" version = "1.0.2"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "18f33027081eba0a6d8aba6d1b1c3a3be58cbb12106341c2d5759fcd9b5277e7" checksum = "98e9e4b82e0ef281812565ea4751049f1bdcdfccda7d3f459f2e138a40c08678"
dependencies = [ dependencies = [
"proc-macro-error-attr", "proc-macro-error-attr",
"proc-macro2", "proc-macro2",
@ -689,9 +689,9 @@ dependencies = [
[[package]] [[package]]
name = "proc-macro-error-attr" name = "proc-macro-error-attr"
version = "0.4.12" version = "1.0.2"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8a5b4b77fdb63c1eca72173d68d24501c54ab1269409f6b672c85deb18af69de" checksum = "4f5444ead4e9935abd7f27dc51f7e852a0569ac888096d5ec2499470794e2e53"
dependencies = [ dependencies = [
"proc-macro2", "proc-macro2",
"quote", "quote",
@ -903,9 +903,9 @@ dependencies = [
[[package]] [[package]]
name = "smallvec" name = "smallvec"
version = "1.2.0" version = "1.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5c2fb2ec9bcd216a5b0d0ccf31ab17b5ed1d627960edff65bbe95d3ce221cefc" checksum = "05720e22615919e4734f6a99ceae50d00226c3c5aca406e102ebc33298214e0a"
[[package]] [[package]]
name = "snafu" name = "snafu"
@ -942,9 +942,9 @@ checksum = "8ea5119cdb4c55b55d432abb513a0429384878c15dde60cc77b1c99de1a95a6a"
[[package]] [[package]]
name = "structopt" name = "structopt"
version = "0.3.12" version = "0.3.13"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c8faa2719539bbe9d77869bfb15d4ee769f99525e707931452c97b693b3f159d" checksum = "ff6da2e8d107dfd7b74df5ef4d205c6aebee0706c647f6bc6a2d5789905c00fb"
dependencies = [ dependencies = [
"clap", "clap",
"lazy_static", "lazy_static",
@ -953,9 +953,9 @@ dependencies = [
[[package]] [[package]]
name = "structopt-derive" name = "structopt-derive"
version = "0.4.5" version = "0.4.6"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3f88b8e18c69496aad6f9ddf4630dd7d585bcaf765786cb415b9aec2fe5a0430" checksum = "a489c87c08fbaf12e386665109dd13470dcc9c4583ea3e10dd2b4523e5ebd9ac"
dependencies = [ dependencies = [
"heck", "heck",
"proc-macro-error", "proc-macro-error",
@ -1122,7 +1122,7 @@ version = "0.1.12"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5479532badd04e128284890390c1e876ef7a993d0570b3597ae43dfa1d59afa4" checksum = "5479532badd04e128284890390c1e876ef7a993d0570b3597ae43dfa1d59afa4"
dependencies = [ dependencies = [
"smallvec 1.2.0", "smallvec 1.3.0",
] ]
[[package]] [[package]]

View File

@ -1,6 +1,6 @@
[package] [package]
name = "imdl" name = "imdl"
version = "0.1.2" version = "0.1.3"
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"

View File

@ -1,6 +1,6 @@
# `imdl completions` # `imdl completions`
``` ```
imdl-completions 0.1.2 imdl-completions 0.1.3
Print shell completion scripts to standard output. Print shell completion scripts to standard output.
USAGE: USAGE:

View File

@ -1,6 +1,6 @@
# `imdl torrent create` # `imdl torrent create`
``` ```
imdl-torrent-create 0.1.2 imdl-torrent-create 0.1.3
Create a `.torrent` file. Create a `.torrent` file.
USAGE: USAGE:

View File

@ -1,6 +1,6 @@
# `imdl torrent link` # `imdl torrent link`
``` ```
imdl-torrent-link 0.1.2 imdl-torrent-link 0.1.3
Generate a magnet link from a `.torrent` file. Generate a magnet link from a `.torrent` file.
USAGE: USAGE:

View File

@ -1,6 +1,6 @@
# `imdl torrent piece length` # `imdl torrent piece length`
``` ```
imdl-torrent-piece-length 0.1.2 imdl-torrent-piece-length 0.1.3
Display information about automatic piece length selection. Display information about automatic piece length selection.
USAGE: USAGE:

View File

@ -1,6 +1,6 @@
# `imdl torrent show` # `imdl torrent show`
``` ```
imdl-torrent-show 0.1.2 imdl-torrent-show 0.1.3
Display information about a `.torrent` file. Display information about a `.torrent` file.
USAGE: USAGE:

View File

@ -1,6 +1,6 @@
# `imdl torrent stats` # `imdl torrent stats`
``` ```
imdl-torrent-stats 0.1.2 imdl-torrent-stats 0.1.3
Show statistics about a collection of `.torrent` files. Show statistics about a collection of `.torrent` files.
USAGE: USAGE:

View File

@ -1,6 +1,6 @@
# `imdl torrent verify` # `imdl torrent verify`
``` ```
imdl-torrent-verify 0.1.2 imdl-torrent-verify 0.1.3
Verify files against a `.torrent` file. Verify files against a `.torrent` file.
USAGE: USAGE:

View File

@ -1,6 +1,6 @@
# `imdl torrent` # `imdl torrent`
``` ```
imdl-torrent 0.1.2 imdl-torrent 0.1.3
Subcommands related to the BitTorrent protocol. Subcommands related to the BitTorrent protocol.
USAGE: USAGE:

View File

@ -1,6 +1,6 @@
# `imdl` # `imdl`
``` ```
imdl v0.1.2 imdl v0.1.3
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

View File

@ -101,7 +101,7 @@ draft: push
pr: push pr: push
hub pull-request -o hub pull-request -o
merge: check merge:
#!/usr/bin/env bash #!/usr/bin/env bash
set -euxo pipefail set -euxo pipefail
while ! hub ci-status --verbose; do while ! hub ci-status --verbose; do
@ -109,6 +109,9 @@ merge: check
done done
just done just done
update: man changelog-update update-toc
cargo update
publish-check: check check-man publish-check: check check-man
cargo outdated --exit-code 1 cargo outdated --exit-code 1
grep {{version}} CHANGELOG.md grep {{version}} CHANGELOG.md

View File

@ -1,5 +1,5 @@
.\" 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-COMPLETIONS "1" "April 2020" "Intermodal v0.1.2" "Intermodal Manual" .TH IMDL-COMPLETIONS "1" "April 2020" "Intermodal v0.1.3" "Intermodal Manual"
.SH NAME .SH NAME
\fBimdl\ completions\fR \fBimdl\ completions\fR
- Print shell completion scripts to standard output. - Print shell completion scripts to standard output.

View File

@ -1,5 +1,5 @@
.\" 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-TORRENT-CREATE "1" "April 2020" "Intermodal v0.1.2" "Intermodal Manual" .TH IMDL-TORRENT-CREATE "1" "April 2020" "Intermodal v0.1.3" "Intermodal Manual"
.SH NAME .SH NAME
\fBimdl\ torrent\ create\fR \fBimdl\ torrent\ create\fR
- Create a `.torrent` file. - Create a `.torrent` file.

View File

@ -1,5 +1,5 @@
.\" 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-TORRENT-LINK "1" "April 2020" "Intermodal v0.1.2" "Intermodal Manual" .TH IMDL-TORRENT-LINK "1" "April 2020" "Intermodal v0.1.3" "Intermodal Manual"
.SH NAME .SH NAME
\fBimdl\ torrent\ link\fR \fBimdl\ torrent\ link\fR
- Generate a magnet link from a `.torrent` file. - Generate a magnet link from a `.torrent` file.

View File

@ -1,5 +1,5 @@
.\" 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-TORRENT-PIECE-LENGTH "1" "April 2020" "Intermodal v0.1.2" "Intermodal Manual" .TH IMDL-TORRENT-PIECE-LENGTH "1" "April 2020" "Intermodal v0.1.3" "Intermodal Manual"
.SH NAME .SH NAME
\fBimdl\ torrent\ piece-length\fR \fBimdl\ torrent\ piece-length\fR
- Display information about automatic piece length selection. - Display information about automatic piece length selection.

View File

@ -1,5 +1,5 @@
.\" 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-TORRENT-SHOW "1" "April 2020" "Intermodal v0.1.2" "Intermodal Manual" .TH IMDL-TORRENT-SHOW "1" "April 2020" "Intermodal v0.1.3" "Intermodal Manual"
.SH NAME .SH NAME
\fBimdl\ torrent\ show\fR \fBimdl\ torrent\ show\fR
- Display information about a `.torrent` file. - Display information about a `.torrent` file.

View File

@ -1,5 +1,5 @@
.\" 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-TORRENT-STATS "1" "April 2020" "Intermodal v0.1.2" "Intermodal Manual" .TH IMDL-TORRENT-STATS "1" "April 2020" "Intermodal v0.1.3" "Intermodal Manual"
.SH NAME .SH NAME
\fBimdl\ torrent\ stats\fR \fBimdl\ torrent\ stats\fR
- Show statistics about a collection of `.torrent` files. - Show statistics about a collection of `.torrent` files.

View File

@ -1,5 +1,5 @@
.\" 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-TORRENT-VERIFY "1" "April 2020" "Intermodal v0.1.2" "Intermodal Manual" .TH IMDL-TORRENT-VERIFY "1" "April 2020" "Intermodal v0.1.3" "Intermodal Manual"
.SH NAME .SH NAME
\fBimdl\ torrent\ verify\fR \fBimdl\ torrent\ verify\fR
- Verify files against a `.torrent` file. - Verify files against a `.torrent` file.

View File

@ -1,5 +1,5 @@
.\" 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-TORRENT "1" "April 2020" "Intermodal v0.1.2" "Intermodal Manual" .TH IMDL-TORRENT "1" "April 2020" "Intermodal v0.1.3" "Intermodal Manual"
.SH NAME .SH NAME
\fBimdl\ torrent\fR \fBimdl\ torrent\fR
- Subcommands related to the BitTorrent protocol. - Subcommands related to the BitTorrent protocol.

View File

@ -1,5 +1,5 @@
.\" 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 \FBIMDL\FR "1" "April 2020" "Intermodal v0.1.2" "Intermodal Manual" .TH \FBIMDL\FR "1" "April 2020" "Intermodal v0.1.3" "Intermodal Manual"
.SH NAME .SH NAME
\fBimdl\fR \fBimdl\fR
- A 40' shipping container for the Internet - A 40' shipping container for the Internet