1
0
mirror of https://github.com/tonarino/innernet.git synced 2024-11-24 08:42:33 +02:00

meta: release v1.3.0

This commit is contained in:
Jake McGinty 2021-05-21 14:46:30 +09:00
parent 414e9c83fb
commit 2d012c6bd9
11 changed files with 26 additions and 20 deletions

10
Cargo.lock generated
View File

@ -151,7 +151,7 @@ dependencies = [
[[package]]
name = "client"
version = "1.3.0-beta.7"
version = "1.3.0"
dependencies = [
"colored",
"dialoguer",
@ -895,7 +895,7 @@ dependencies = [
[[package]]
name = "server"
version = "1.3.0-beta.7"
version = "1.3.0"
dependencies = [
"anyhow",
"bytes",
@ -928,7 +928,7 @@ dependencies = [
[[package]]
name = "shared"
version = "1.3.0-beta.7"
version = "1.3.0"
dependencies = [
"colored",
"dialoguer",
@ -1280,7 +1280,7 @@ checksum = "fd6fbd9a79829dd1ad0cc20627bf1ed606756a7f77edff7b66b7064f9cb327c6"
[[package]]
name = "wgctrl"
version = "1.3.0-beta.7"
version = "1.3.0"
dependencies = [
"base64",
"hex",
@ -1293,7 +1293,7 @@ dependencies = [
[[package]]
name = "wgctrl-sys"
version = "1.3.0-beta.7"
version = "1.3.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.3.0-beta.7 client
cargo install --git https://github.com/tonarino/innernet --tag v1.3.0 client
# to install innernet-server:
cargo install --git https://github.com/tonarino/innernet --tag v1.3.0-beta.7 server
cargo install --git https://github.com/tonarino/innernet --tag v1.3.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.3.0-beta.7"
version = "1.3.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" "May 2021" "innernet-server 1.3.0-beta.7" "System Administration Utilities"
.TH INNERNET-SERVER "8" "May 2021" "innernet-server 1.3.0" "System Administration Utilities"
.SH NAME
innernet-server \- manual page for innernet-server 1.3.0-beta.7
innernet-server \- manual page for innernet-server 1.3.0
.SH DESCRIPTION
innernet\-server 1.3.0\-beta.7
innernet\-server 1.3.0
A server to coordinate innernet networks.
.SS "USAGE:"
.IP
@ -22,7 +22,7 @@ Prints version information
.TP
\fB\-\-backend\fR <backend>
Specify a WireGuard backend to use. If not set, innernet will auto\-select based on
availability [default: kernel] [possible values: kernel, userspace]
availability [default: userspace] [possible values: userspace]
.SS "SUBCOMMANDS:"
.TP
add\-cidr
@ -31,6 +31,9 @@ Add a new CIDR to an existing network
add\-peer
Add a peer to an existing network
.TP
delete\-cidr
Delete a CIDR
.TP
help
Prints this message or the help of the given subcommand(s)
.TP

Binary file not shown.

View File

@ -1,9 +1,9 @@
.\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.48.3.
.TH INNERNET "8" "May 2021" "innernet 1.3.0-beta.7" "System Administration Utilities"
.TH INNERNET "8" "May 2021" "innernet 1.3.0" "System Administration Utilities"
.SH NAME
innernet \- manual page for innernet 1.3.0-beta.7
innernet \- manual page for innernet 1.3.0
.SH DESCRIPTION
innernet 1.3.0\-beta.7
innernet 1.3.0
A client to manage innernet network interfaces.
.SS "USAGE:"
.IP
@ -28,7 +28,7 @@ Prints version information
\fB\-\-backend\fR <backend>
.IP
Specify a WireGuard backend to use. If not set, innernet will auto\-select based on availability [default:
kernel] [possible values: kernel, userspace]
userspace] [possible values: userspace]
.SS "SUBCOMMANDS:"
.TP
add\-association
@ -43,6 +43,9 @@ Add a new peer
delete\-association
Delete an association between CIDRs
.TP
delete\-cidr
Delete a CIDR
.TP
disable\-peer
Disable an enabled peer
.TP

Binary file not shown.

View File

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

View File

@ -4,7 +4,7 @@ edition = "2018"
license = "MIT"
name = "shared"
publish = false
version = "1.3.0-beta.7"
version = "1.3.0"
[dependencies]
colored = "2.0"

View File

@ -7,7 +7,7 @@ license = "LGPL-2.1-or-later"
name = "wgctrl"
publish = false
readme = "../README.md"
version = "1.3.0-beta.7"
version = "1.3.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.3.0-beta.7"
version = "1.3.0"
[dependencies]
libc = "0.2"