diff --git a/Cargo.lock b/Cargo.lock index 50d7bc7..a29fa12 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -84,7 +84,7 @@ dependencies = [ [[package]] name = "bore-cli" -version = "0.2.3" +version = "0.3.0" dependencies = [ "anyhow", "clap", diff --git a/Cargo.toml b/Cargo.toml index 939cb56..d80ccf0 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bore-cli" -version = "0.2.3" +version = "0.3.0" authors = ["Eric Zhang "] license = "MIT" description = "A modern, simple TCP tunnel in Rust that exposes local ports to a remote server, bypassing standard NAT connection firewalls." diff --git a/README.md b/README.md index aea9ffc..c5d0720 100644 --- a/README.md +++ b/README.md @@ -52,7 +52,7 @@ You can optionally pass in a `--port` option to pick a specific port on the remo The full options are shown below. ```shell -bore-local 0.2.3 +bore-local 0.3.0 Starts a local proxy to the remote server USAGE: @@ -83,7 +83,7 @@ That's all it takes! After the server starts running at a given address, you can The full options for the `bore server` command are shown below. ```shell -bore-server 0.2.3 +bore-server 0.3.0 Runs the remote proxy server USAGE: @@ -116,7 +116,7 @@ bore server --secret my_secret_string bore local --to --secret my_secret_string ``` -`BORE_SECRET` environment variable can also be used for setting the secret for client/server. +If a secret is not present in the arguments, `bore` will also attempt to read from the `BORE_SECRET` environment variable. ## Acknowledgements