meta: release v1.4.0

pull/121/head v1.4.0
Jake McGinty 2021-07-11 22:16:20 +09:00
parent 867583a992
commit 118986e5e3
17 changed files with 29 additions and 29 deletions

10
Cargo.lock generated
View File

@ -151,7 +151,7 @@ dependencies = [
[[package]]
name = "client"
version = "1.4.0-beta.3"
version = "1.4.0"
dependencies = [
"anyhow",
"colored",
@ -926,7 +926,7 @@ dependencies = [
[[package]]
name = "server"
version = "1.4.0-beta.3"
version = "1.4.0"
dependencies = [
"anyhow",
"bytes",
@ -959,7 +959,7 @@ dependencies = [
[[package]]
name = "shared"
version = "1.4.0-beta.3"
version = "1.4.0"
dependencies = [
"anyhow",
"atty",
@ -1319,7 +1319,7 @@ checksum = "fd6fbd9a79829dd1ad0cc20627bf1ed606756a7f77edff7b66b7064f9cb327c6"
[[package]]
name = "wgctrl"
version = "1.4.0-beta.3"
version = "1.4.0"
dependencies = [
"base64",
"hex",
@ -1332,7 +1332,7 @@ dependencies = [
[[package]]
name = "wgctrl-sys"
version = "1.4.0-beta.3"
version = "1.4.0"
dependencies = [
"bindgen",
"cc",

View File

@ -204,10 +204,10 @@ brew install tonarino/innernet/innernet
```sh
# to install innernet:
cargo install --git https://github.com/tonarino/innernet --tag v1.4.0-beta.3 client
cargo install --git https://github.com/tonarino/innernet --tag v1.4.0 client
# to install innernet-server:
cargo install --git https://github.com/tonarino/innernet --tag v1.4.0-beta.3 server
cargo install --git https://github.com/tonarino/innernet --tag v1.4.0 server
```
Note that you'll be responsible for updating manually.

View File

@ -7,7 +7,7 @@ license = "MIT"
name = "client"
publish = false
repository = "https://github.com/tonarino/innernet"
version = "1.4.0-beta.3"
version = "1.4.0"
[[bin]]
name = "innernet"

View File

@ -1,9 +1,9 @@
.\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.48.3.
.TH INNERNET-SERVER "8" "June 2021" "innernet-server 1.4.0-beta.3" "System Administration Utilities"
.TH INNERNET-SERVER "8" "July 2021" "innernet-server 1.4.0" "System Administration Utilities"
.SH NAME
innernet-server \- manual page for innernet-server 1.4.0-beta.3
innernet-server \- manual page for innernet-server 1.4.0
.SH DESCRIPTION
innernet\-server 1.4.0\-beta.3
innernet\-server 1.4.0
A server to coordinate innernet networks.
.SS "USAGE:"
.IP
@ -16,7 +16,7 @@ babeld
.TP
\fB\-\-backend\fR <backend>
Specify a WireGuard backend to use. If not set, innernet will auto\-select based on
availability [default: userspace] [possible values: userspace]
availability [default: kernel] [possible values: kernel, userspace]
.TP
\fB\-\-mtu\fR <mtu>
Specify the desired MTU for your interface (default: 1420 for IPv4 and 1400 for IPv6)

Binary file not shown.

View File

@ -58,7 +58,7 @@ _innernet-server() {
case "${prev}" in
--backend)
COMPREPLY=($(compgen -W "userspace" -- "${cur}"))
COMPREPLY=($(compgen -W "kernel userspace" -- "${cur}"))
return 0
;;
--mtu)
@ -282,7 +282,7 @@ _innernet-server() {
case "${prev}" in
--backend)
COMPREPLY=($(compgen -W "userspace" -- "${cur}"))
COMPREPLY=($(compgen -W "kernel userspace" -- "${cur}"))
return 0
;;
--mtu)

View File

@ -1,4 +1,4 @@
complete -c innernet-server -n "__fish_use_subcommand" -l backend -d 'Specify a WireGuard backend to use. If not set, innernet will auto-select based on availability' -r -f -a "userspace"
complete -c innernet-server -n "__fish_use_subcommand" -l backend -d 'Specify a WireGuard backend to use. If not set, innernet will auto-select based on availability' -r -f -a "kernel userspace"
complete -c innernet-server -n "__fish_use_subcommand" -l mtu -d 'Specify the desired MTU for your interface (default: 1420 for IPv4 and 1400 for IPv6)'
complete -c innernet-server -n "__fish_use_subcommand" -l no-routing -d 'Whether the routing should be done by innernet or is done by an external tool like e.g. babeld'
complete -c innernet-server -n "__fish_use_subcommand" -s h -l help -d 'Prints help information'
@ -21,7 +21,7 @@ complete -c innernet-server -n "__fish_seen_subcommand_from new" -s h -l help -d
complete -c innernet-server -n "__fish_seen_subcommand_from new" -s V -l version -d 'Prints version information'
complete -c innernet-server -n "__fish_seen_subcommand_from uninstall" -s h -l help -d 'Prints help information'
complete -c innernet-server -n "__fish_seen_subcommand_from uninstall" -s V -l version -d 'Prints version information'
complete -c innernet-server -n "__fish_seen_subcommand_from serve" -l backend -d 'Specify a WireGuard backend to use. If not set, innernet will auto-select based on availability' -r -f -a "userspace"
complete -c innernet-server -n "__fish_seen_subcommand_from serve" -l backend -d 'Specify a WireGuard backend to use. If not set, innernet will auto-select based on availability' -r -f -a "kernel userspace"
complete -c innernet-server -n "__fish_seen_subcommand_from serve" -l mtu -d 'Specify the desired MTU for your interface (default: 1420 for IPv4 and 1400 for IPv6)'
complete -c innernet-server -n "__fish_seen_subcommand_from serve" -l no-routing -d 'Whether the routing should be done by innernet or is done by an external tool like e.g. babeld'
complete -c innernet-server -n "__fish_seen_subcommand_from serve" -s h -l help -d 'Prints help information'

View File

@ -15,7 +15,7 @@ _innernet-server() {
local context curcontext="$curcontext" state line
_arguments "${_arguments_options[@]}" \
'--backend=[Specify a WireGuard backend to use. If not set, innernet will auto-select based on availability]: :(userspace)' \
'--backend=[Specify a WireGuard backend to use. If not set, innernet will auto-select based on availability]: :(kernel userspace)' \
'--mtu=[Specify the desired MTU for your interface (default: 1420 for IPv4 and 1400 for IPv6)]' \
'--no-routing[Whether the routing should be done by innernet or is done by an external tool like e.g. babeld]' \
'-h[Prints help information]' \
@ -81,7 +81,7 @@ _arguments "${_arguments_options[@]}" \
;;
(serve)
_arguments "${_arguments_options[@]}" \
'--backend=[Specify a WireGuard backend to use. If not set, innernet will auto-select based on availability]: :(userspace)' \
'--backend=[Specify a WireGuard backend to use. If not set, innernet will auto-select based on availability]: :(kernel userspace)' \
'--mtu=[Specify the desired MTU for your interface (default: 1420 for IPv4 and 1400 for IPv6)]' \
'--no-routing[Whether the routing should be done by innernet or is done by an external tool like e.g. babeld]' \
'-h[Prints help information]' \

View File

@ -1,9 +1,9 @@
.\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.48.3.
.TH INNERNET "8" "June 2021" "innernet 1.4.0-beta.3" "System Administration Utilities"
.TH INNERNET "8" "July 2021" "innernet 1.4.0" "System Administration Utilities"
.SH NAME
innernet \- manual page for innernet 1.4.0-beta.3
innernet \- manual page for innernet 1.4.0
.SH DESCRIPTION
innernet 1.4.0\-beta.3
innernet 1.4.0
A client to manage innernet network interfaces.
.SS "USAGE:"
.IP
@ -21,7 +21,7 @@ Whether the routing should be done by innernet or is done by an external tool li
\fB\-\-backend\fR <backend>
.IP
Specify a WireGuard backend to use. If not set, innernet will auto\-select based on availability [default:
userspace] [possible values: userspace]
kernel] [possible values: kernel, userspace]
.HP
\fB\-\-mtu\fR <mtu>
.IP

Binary file not shown.

View File

@ -94,7 +94,7 @@ _innernet() {
case "${prev}" in
--backend)
COMPREPLY=($(compgen -W "userspace" -- "${cur}"))
COMPREPLY=($(compgen -W "kernel userspace" -- "${cur}"))
return 0
;;
--mtu)

View File

@ -1,4 +1,4 @@
complete -c innernet -n "__fish_use_subcommand" -l backend -d 'Specify a WireGuard backend to use. If not set, innernet will auto-select based on availability' -r -f -a "userspace"
complete -c innernet -n "__fish_use_subcommand" -l backend -d 'Specify a WireGuard backend to use. If not set, innernet will auto-select based on availability' -r -f -a "kernel userspace"
complete -c innernet -n "__fish_use_subcommand" -l mtu -d 'Specify the desired MTU for your interface (default: 1420 for IPv4 and 1400 for IPv6)'
complete -c innernet -n "__fish_use_subcommand" -s v -l verbose -d 'Verbose output, use -vv for even higher verbositude'
complete -c innernet -n "__fish_use_subcommand" -l no-routing -d 'Whether the routing should be done by innernet or is done by an external tool like e.g. babeld'

View File

@ -15,7 +15,7 @@ _innernet() {
local context curcontext="$curcontext" state line
_arguments "${_arguments_options[@]}" \
'--backend=[Specify a WireGuard backend to use. If not set, innernet will auto-select based on availability]: :(userspace)' \
'--backend=[Specify a WireGuard backend to use. If not set, innernet will auto-select based on availability]: :(kernel userspace)' \
'--mtu=[Specify the desired MTU for your interface (default: 1420 for IPv4 and 1400 for IPv6)]' \
'*-v[Verbose output, use -vv for even higher verbositude]' \
'*--verbose[Verbose output, use -vv for even higher verbositude]' \

View File

@ -6,7 +6,7 @@ license = "MIT"
name = "server"
publish = false
readme = "README.md"
version = "1.4.0-beta.3"
version = "1.4.0"
[[bin]]
name = "innernet-server"

View File

@ -4,7 +4,7 @@ edition = "2018"
license = "MIT"
name = "shared"
publish = false
version = "1.4.0-beta.3"
version = "1.4.0"
[dependencies]
anyhow = "1"

View File

@ -7,7 +7,7 @@ license = "LGPL-2.1-or-later"
name = "wgctrl"
publish = false
readme = "../README.md"
version = "1.4.0-beta.3"
version = "1.4.0"
[dependencies]
base64 = "0.13"

View File

@ -7,7 +7,7 @@ name = "wgctrl-sys"
publish = false
readme = "../README.md"
repository = "https://gitlab.com/K900/wgctrl-rs"
version = "1.4.0-beta.3"
version = "1.4.0"
[dependencies]
libc = "0.2"