diff options
author | Teddy Wing | 2017-05-13 00:48:38 +0200 |
---|---|---|
committer | Teddy Wing | 2017-05-13 00:48:38 +0200 |
commit | 4d7962669bd4b6be41197dfe7126f61c9d44fb23 (patch) | |
tree | 6236b38344cb771e7bedb135861adab45480dbb5 | |
parent | bf1d176170d0011c21806e20306e5c7de57ad1b6 (diff) | |
download | HearURL-4d7962669bd4b6be41197dfe7126f61c9d44fb23.tar.bz2 |
Increase version v0.0.1 -> v0.1.0v0.1.0
-rw-r--r-- | CHANGELOG | 9 | ||||
-rw-r--r-- | Cargo.lock | 2 | ||||
-rw-r--r-- | Cargo.toml | 2 |
3 files changed, 11 insertions, 2 deletions
@@ -1,5 +1,14 @@ CHANGELOG ========= +v0.1.0 (2017-05-12): + Initial public release. + + + Add `-b` command line option to set a browser. + + Add `-p` command line option to customise the TCP port the program + listens on. + * Only send input to the browser if it's a valid URL. + * Fix cases where the program would terminate on invalid input. + v0.0.1 (2017-04-22): * Pre-release. Initial working version. @@ -1,6 +1,6 @@ [root] name = "hearurl" -version = "0.0.1" +version = "0.1.0" dependencies = [ "getopts 0.2.14 (registry+https://github.com/rust-lang/crates.io-index)", "url 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)", @@ -1,6 +1,6 @@ [package] name = "hearurl" -version = "0.0.1" +version = "0.1.0" [dependencies] getopts = "0.2" |