aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--CHANGELOG9
-rw-r--r--Cargo.lock2
-rw-r--r--Cargo.toml2
3 files changed, 11 insertions, 2 deletions
diff --git a/CHANGELOG b/CHANGELOG
index 548cbe4..df13ac9 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -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.
diff --git a/Cargo.lock b/Cargo.lock
index 57dc6d2..02e7b4a 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -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)",
diff --git a/Cargo.toml b/Cargo.toml
index 75c36b9..569de52 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "hearurl"
-version = "0.0.1"
+version = "0.1.0"
[dependencies]
getopts = "0.2"