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

View File

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

View File

@ -2,22 +2,22 @@
# 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
+--------+ +------------+ +-------------+
| Client | >>> | PTTH relay | <<< | PTTH server |
+--------+ +------------+ +-------------+
HTTP:
Inside the tunnel
+--------+ -------------- +-------------+
| Client | >>> >>> >>> | Server |
+--------+ -------------- +-------------+
Client --> Firewall --> Server
PTTH:
Client --> Firewall --> Relay <-- Firewall <-- Server
```
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

View File

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

View File

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

View File

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

View File

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