🎉 release: bump versions to 1.1.0 for everything in prod

I forgot to set the version in Cargo.toml files for 1.0.0.
I'm not gonna do 0.x versions because this is already live somewhere
and I don't like that 0.x adds complexity to versioning.
main
_ 2021-01-20 20:49:32 -06:00
parent 2444933122
commit 031b03a13c
7 changed files with 20 additions and 20 deletions

10
Cargo.lock generated
View File

@ -1610,7 +1610,7 @@ dependencies = [
[[package]] [[package]]
name = "ptth" name = "ptth"
version = "0.1.0" version = "1.1.0"
dependencies = [ dependencies = [
"base64 0.13.0", "base64 0.13.0",
"blake3", "blake3",
@ -1625,7 +1625,7 @@ dependencies = [
[[package]] [[package]]
name = "ptth_core" name = "ptth_core"
version = "0.1.0" version = "1.1.0"
dependencies = [ dependencies = [
"ctrlc", "ctrlc",
"futures", "futures",
@ -1639,7 +1639,7 @@ dependencies = [
[[package]] [[package]]
name = "ptth_file_server" name = "ptth_file_server"
version = "0.1.0" version = "1.1.0"
dependencies = [ dependencies = [
"anyhow", "anyhow",
"arc-swap", "arc-swap",
@ -1704,7 +1704,7 @@ dependencies = [
[[package]] [[package]]
name = "ptth_relay" name = "ptth_relay"
version = "0.1.0" version = "1.1.0"
dependencies = [ dependencies = [
"base64 0.12.3", "base64 0.12.3",
"blake3", "blake3",
@ -1731,7 +1731,7 @@ dependencies = [
[[package]] [[package]]
name = "ptth_server" name = "ptth_server"
version = "0.1.0" version = "1.1.0"
dependencies = [ dependencies = [
"aho-corasick", "aho-corasick",
"always_equal", "always_equal",

View File

@ -1,7 +1,7 @@
[package] [package]
name = "ptth" name = "ptth"
version = "0.1.0" version = "1.1.0"
authors = ["Trish"] authors = ["Trish"]
edition = "2018" edition = "2018"
license = "AGPL-3.0" license = "AGPL-3.0"

View File

@ -2,22 +2,22 @@
# PTTH # PTTH
An HTTP server that can run behind a firewall by connecting out to a relay. An extroverted HTTP server that makes outgoing connections through
firewalls.
``` ```
Outside the tunnel HTTP:
+--------+ +------------+ +-------------+
| Client | >>> | PTTH relay | <<< | PTTH server |
+--------+ +------------+ +-------------+
Inside the tunnel Client --> Firewall --> Server
+--------+ -------------- +-------------+
| Client | >>> >>> >>> | Server | PTTH:
+--------+ -------------- +-------------+
Client --> Firewall --> Relay <-- Firewall <-- Server
``` ```
The server can run behind a firewall, because it is actually a special HTTP The server can run behind a firewall, because it is actually a special HTTP
client. client. The relay acts as a facade, so the client is still a normal
HTTP client like Firefox, curl, or wget.
## Configuration ## Configuration

View File

@ -1,7 +1,7 @@
[package] [package]
name = "ptth_core" name = "ptth_core"
version = "0.1.0" version = "1.1.0"
authors = ["Trish"] authors = ["Trish"]
edition = "2018" edition = "2018"
license = "AGPL-3.0" license = "AGPL-3.0"

View File

@ -1,7 +1,7 @@
[package] [package]
name = "ptth_file_server" name = "ptth_file_server"
version = "0.1.0" version = "1.1.0"
authors = ["Trish"] authors = ["Trish"]
edition = "2018" edition = "2018"
license = "AGPL-3.0" license = "AGPL-3.0"

View File

@ -1,7 +1,7 @@
[package] [package]
name = "ptth_relay" name = "ptth_relay"
version = "0.1.0" version = "1.1.0"
authors = ["Trish"] authors = ["Trish"]
edition = "2018" edition = "2018"
license = "AGPL-3.0" license = "AGPL-3.0"

View File

@ -1,7 +1,7 @@
[package] [package]
name = "ptth_server" name = "ptth_server"
version = "0.1.0" version = "1.1.0"
authors = ["Trish"] authors = ["Trish"]
edition = "2018" edition = "2018"
license = "AGPL-3.0" license = "AGPL-3.0"