meta: release v1.1.0-rc.1

pull/48/head v1.1.0-rc.1
Jake McGinty 2021-04-09 22:47:33 +09:00
parent c370c25924
commit 6c55dafce6
10 changed files with 112 additions and 10 deletions

10
Cargo.lock generated
View File

@ -155,7 +155,7 @@ dependencies = [
[[package]] [[package]]
name = "client" name = "client"
version = "1.0.2-rc.2" version = "1.1.0-rc.1"
dependencies = [ dependencies = [
"colored", "colored",
"dialoguer", "dialoguer",
@ -1110,7 +1110,7 @@ dependencies = [
[[package]] [[package]]
name = "server" name = "server"
version = "1.0.2-rc.2" version = "1.1.0-rc.1"
dependencies = [ dependencies = [
"anyhow", "anyhow",
"colored", "colored",
@ -1156,7 +1156,7 @@ dependencies = [
[[package]] [[package]]
name = "shared" name = "shared"
version = "1.0.2-rc.2" version = "1.1.0-rc.1"
dependencies = [ dependencies = [
"colored", "colored",
"dialoguer", "dialoguer",
@ -1584,7 +1584,7 @@ checksum = "fd6fbd9a79829dd1ad0cc20627bf1ed606756a7f77edff7b66b7064f9cb327c6"
[[package]] [[package]]
name = "wgctrl" name = "wgctrl"
version = "1.0.2-rc.2" version = "1.1.0-rc.1"
dependencies = [ dependencies = [
"base64", "base64",
"hex", "hex",
@ -1597,7 +1597,7 @@ dependencies = [
[[package]] [[package]]
name = "wgctrl-sys" name = "wgctrl-sys"
version = "1.0.2-rc.2" version = "1.1.0-rc.1"
dependencies = [ dependencies = [
"bindgen", "bindgen",
"cc", "cc",

View File

@ -7,7 +7,7 @@ license = "MIT"
name = "client" name = "client"
publish = false publish = false
repository = "https://github.com/tonarino/innernet" repository = "https://github.com/tonarino/innernet"
version = "1.0.2-rc.2" version = "1.1.0-rc.1"
[[bin]] [[bin]]
name = "innernet" name = "innernet"

36
doc/innernet-server.8 Normal file
View File

@ -0,0 +1,36 @@
.\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.48.3.
.TH INNERNET-SERVER "8" "April 2021" "innernet-server 1.1.0-rc.1" "System Administration Utilities"
.SH NAME
innernet-server \- manual page for innernet-server 1.1.0-rc.1
.SH DESCRIPTION
innernet\-server 1.1.0\-rc.1
A server to coordinate innernet networks.
.SS "USAGE:"
.IP
innernet\-server <SUBCOMMAND>
.SS "FLAGS:"
.TP
\fB\-h\fR, \fB\-\-help\fR
Prints help information
.TP
\fB\-V\fR, \fB\-\-version\fR
Prints version information
.SS "SUBCOMMANDS:"
.TP
add\-cidr
Add a new CIDR to an existing network
.TP
add\-peer
Add a peer to an existing network
.TP
help
Prints this message or the help of the given subcommand(s)
.TP
new
Create a new network
.TP
serve
Serve the coordinating server for an existing network
.TP
uninstall
Permanently uninstall a created network, rendering it unusable. Use with care

Binary file not shown.

66
doc/innernet.8 Normal file
View File

@ -0,0 +1,66 @@
.\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.48.3.
.TH INNERNET "8" "April 2021" "innernet 1.1.0-rc.1" "System Administration Utilities"
.SH NAME
innernet \- manual page for innernet 1.1.0-rc.1
.SH DESCRIPTION
innernet 1.1.0\-rc.1
A client to manage innernet network interfaces.
.SS "USAGE:"
.IP
innernet [SUBCOMMAND]
.SS "FLAGS:"
.TP
\fB\-h\fR, \fB\-\-help\fR
Prints help information
.TP
\fB\-V\fR, \fB\-\-version\fR
Prints version information
.SS "SUBCOMMANDS:"
.TP
add\-association
Add an association between CIDRs
.TP
add\-cidr
Add a new CIDR
.TP
add\-peer
Add a new peer
.TP
delete\-association
Delete an association between CIDRs
.TP
disable\-peer
Disable an enabled peer
.TP
down
Bring down the interface (equivalent to "wg\-quick down [interface]")
.TP
enable\-peer
Enable a disabled peer
.TP
fetch
Fetch and update your local interface with the latest peer list
.TP
help
Prints this message or the help of the given subcommand(s)
.TP
install
Install a new innernet config
.TP
list\-associations
List existing assocations between CIDRs
.TP
override\-endpoint
Override your external endpoint that the server sends to other peers
.TP
set\-listen\-port
Set the local listen port
.TP
show
Enumerate all innernet connections
.TP
uninstall
Uninstall an innernet network
.TP
up
Bring up your local interface, and update it with latest peer list

Binary file not shown.

View File

@ -6,7 +6,7 @@ license = "MIT"
name = "server" name = "server"
publish = false publish = false
readme = "README.md" readme = "README.md"
version = "1.0.2-rc.2" version = "1.1.0-rc.1"
[[bin]] [[bin]]
name = "innernet-server" name = "innernet-server"

View File

@ -4,7 +4,7 @@ edition = "2018"
license = "MIT" license = "MIT"
name = "shared" name = "shared"
publish = false publish = false
version = "1.0.2-rc.2" version = "1.1.0-rc.1"
[dependencies] [dependencies]
colored = "2.0" colored = "2.0"

View File

@ -7,7 +7,7 @@ license = "LGPL-2.1-or-later"
name = "wgctrl" name = "wgctrl"
publish = false publish = false
readme = "../README.md" readme = "../README.md"
version = "1.0.2-rc.2" version = "1.1.0-rc.1"
[dependencies] [dependencies]
base64 = "0.13" base64 = "0.13"

View File

@ -7,7 +7,7 @@ name = "wgctrl-sys"
publish = false publish = false
readme = "../README.md" readme = "../README.md"
repository = "https://gitlab.com/K900/wgctrl-rs" repository = "https://gitlab.com/K900/wgctrl-rs"
version = "1.0.2-rc.2" version = "1.1.0-rc.1"
[dependencies] [dependencies]
libc = "0.2" libc = "0.2"