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:
parent
268c62b66d
commit
8e6a2b0034
|
@ -2,9 +2,10 @@ Changelog
|
|||
=========
|
||||
|
||||
|
||||
UNRELEASED - 2020-04-09
|
||||
-----------------------
|
||||
- :books: [`xxxxxxxxxxxx`](https://github.com/casey/intermodal/commits/master) Add `bin/man` command for generating man pages - _Casey Rodarmor <casey@rodarmor.com>_
|
||||
[v0.1.3](https://github.com/casey/intermodal/releases/tag/v0.1.3) - 2020-04-10
|
||||
------------------------------------------------------------------------------
|
||||
- :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: [`4f8b6a212e80`](https://github.com/casey/intermodal/commit/4f8b6a212e8099ebfcf14600ce92863583758231) Improve demo GIF - _Casey Rodarmor <casey@rodarmor.com>_
|
||||
|
||||
|
|
24
Cargo.lock
generated
24
Cargo.lock
generated
|
@ -398,7 +398,7 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "imdl"
|
||||
version = "0.1.2"
|
||||
version = "0.1.3"
|
||||
dependencies = [
|
||||
"ansi_term 0.12.1",
|
||||
"atty",
|
||||
|
@ -676,9 +676,9 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "proc-macro-error"
|
||||
version = "0.4.12"
|
||||
version = "1.0.2"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "18f33027081eba0a6d8aba6d1b1c3a3be58cbb12106341c2d5759fcd9b5277e7"
|
||||
checksum = "98e9e4b82e0ef281812565ea4751049f1bdcdfccda7d3f459f2e138a40c08678"
|
||||
dependencies = [
|
||||
"proc-macro-error-attr",
|
||||
"proc-macro2",
|
||||
|
@ -689,9 +689,9 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "proc-macro-error-attr"
|
||||
version = "0.4.12"
|
||||
version = "1.0.2"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "8a5b4b77fdb63c1eca72173d68d24501c54ab1269409f6b672c85deb18af69de"
|
||||
checksum = "4f5444ead4e9935abd7f27dc51f7e852a0569ac888096d5ec2499470794e2e53"
|
||||
dependencies = [
|
||||
"proc-macro2",
|
||||
"quote",
|
||||
|
@ -903,9 +903,9 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "smallvec"
|
||||
version = "1.2.0"
|
||||
version = "1.3.0"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "5c2fb2ec9bcd216a5b0d0ccf31ab17b5ed1d627960edff65bbe95d3ce221cefc"
|
||||
checksum = "05720e22615919e4734f6a99ceae50d00226c3c5aca406e102ebc33298214e0a"
|
||||
|
||||
[[package]]
|
||||
name = "snafu"
|
||||
|
@ -942,9 +942,9 @@ checksum = "8ea5119cdb4c55b55d432abb513a0429384878c15dde60cc77b1c99de1a95a6a"
|
|||
|
||||
[[package]]
|
||||
name = "structopt"
|
||||
version = "0.3.12"
|
||||
version = "0.3.13"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "c8faa2719539bbe9d77869bfb15d4ee769f99525e707931452c97b693b3f159d"
|
||||
checksum = "ff6da2e8d107dfd7b74df5ef4d205c6aebee0706c647f6bc6a2d5789905c00fb"
|
||||
dependencies = [
|
||||
"clap",
|
||||
"lazy_static",
|
||||
|
@ -953,9 +953,9 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "structopt-derive"
|
||||
version = "0.4.5"
|
||||
version = "0.4.6"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "3f88b8e18c69496aad6f9ddf4630dd7d585bcaf765786cb415b9aec2fe5a0430"
|
||||
checksum = "a489c87c08fbaf12e386665109dd13470dcc9c4583ea3e10dd2b4523e5ebd9ac"
|
||||
dependencies = [
|
||||
"heck",
|
||||
"proc-macro-error",
|
||||
|
@ -1122,7 +1122,7 @@ version = "0.1.12"
|
|||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "5479532badd04e128284890390c1e876ef7a993d0570b3597ae43dfa1d59afa4"
|
||||
dependencies = [
|
||||
"smallvec 1.2.0",
|
||||
"smallvec 1.3.0",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
[package]
|
||||
name = "imdl"
|
||||
version = "0.1.2"
|
||||
version = "0.1.3"
|
||||
description = "📦 A 40' shipping container for the internet"
|
||||
authors = ["Casey Rodarmor <casey@rodarmor.com>"]
|
||||
license = "CC0-1.0"
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
# `imdl completions`
|
||||
```
|
||||
imdl-completions 0.1.2
|
||||
imdl-completions 0.1.3
|
||||
Print shell completion scripts to standard output.
|
||||
|
||||
USAGE:
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
# `imdl torrent create`
|
||||
```
|
||||
imdl-torrent-create 0.1.2
|
||||
imdl-torrent-create 0.1.3
|
||||
Create a `.torrent` file.
|
||||
|
||||
USAGE:
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
# `imdl torrent link`
|
||||
```
|
||||
imdl-torrent-link 0.1.2
|
||||
imdl-torrent-link 0.1.3
|
||||
Generate a magnet link from a `.torrent` file.
|
||||
|
||||
USAGE:
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
# `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.
|
||||
|
||||
USAGE:
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
# `imdl torrent show`
|
||||
```
|
||||
imdl-torrent-show 0.1.2
|
||||
imdl-torrent-show 0.1.3
|
||||
Display information about a `.torrent` file.
|
||||
|
||||
USAGE:
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
# `imdl torrent stats`
|
||||
```
|
||||
imdl-torrent-stats 0.1.2
|
||||
imdl-torrent-stats 0.1.3
|
||||
Show statistics about a collection of `.torrent` files.
|
||||
|
||||
USAGE:
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
# `imdl torrent verify`
|
||||
```
|
||||
imdl-torrent-verify 0.1.2
|
||||
imdl-torrent-verify 0.1.3
|
||||
Verify files against a `.torrent` file.
|
||||
|
||||
USAGE:
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
# `imdl torrent`
|
||||
```
|
||||
imdl-torrent 0.1.2
|
||||
imdl-torrent 0.1.3
|
||||
Subcommands related to the BitTorrent protocol.
|
||||
|
||||
USAGE:
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
# `imdl`
|
||||
```
|
||||
imdl v0.1.2
|
||||
imdl v0.1.3
|
||||
Casey Rodarmor <casey@rodarmor.com>
|
||||
📦 A 40' shipping container for the internet - https://github.com/casey/intermodal
|
||||
|
||||
|
|
5
justfile
5
justfile
|
@ -101,7 +101,7 @@ draft: push
|
|||
pr: push
|
||||
hub pull-request -o
|
||||
|
||||
merge: check
|
||||
merge:
|
||||
#!/usr/bin/env bash
|
||||
set -euxo pipefail
|
||||
while ! hub ci-status --verbose; do
|
||||
|
@ -109,6 +109,9 @@ merge: check
|
|||
done
|
||||
just done
|
||||
|
||||
update: man changelog-update update-toc
|
||||
cargo update
|
||||
|
||||
publish-check: check check-man
|
||||
cargo outdated --exit-code 1
|
||||
grep {{version}} CHANGELOG.md
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
.\" 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
|
||||
\fBimdl\ completions\fR
|
||||
- Print shell completion scripts to standard output.
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
.\" 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
|
||||
\fBimdl\ torrent\ create\fR
|
||||
- Create a `.torrent` file.
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
.\" 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
|
||||
\fBimdl\ torrent\ link\fR
|
||||
- Generate a magnet link from a `.torrent` file.
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
.\" 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
|
||||
\fBimdl\ torrent\ piece-length\fR
|
||||
- Display information about automatic piece length selection.
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
.\" 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
|
||||
\fBimdl\ torrent\ show\fR
|
||||
- Display information about a `.torrent` file.
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
.\" 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
|
||||
\fBimdl\ torrent\ stats\fR
|
||||
- Show statistics about a collection of `.torrent` files.
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
.\" 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
|
||||
\fBimdl\ torrent\ verify\fR
|
||||
- Verify files against a `.torrent` file.
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
.\" 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
|
||||
\fBimdl\ torrent\fR
|
||||
- Subcommands related to the BitTorrent protocol.
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
.\" 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
|
||||
\fBimdl\fR
|
||||
- A 40' shipping container for the Internet
|
||||
|
|
Loading…
Reference in New Issue
Block a user