summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--CHANGELOG.md11
-rw-r--r--Cargo.toml2
-rw-r--r--src/lib.rs2
3 files changed, 13 insertions, 2 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 74688e7..370f372 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,3 +1,14 @@
+## Version 1.1.8
+
+New feature:
+* 407f12d client: output local time by default, add -z/--zulu for UTC
+
+Housekeeping:
+* 02212e2 Switch to std::time and drop use of 'time' crate
+* d42db50 Upgrade several dependencies to latest versions
+* e13d6fd Remove deprecated `std::error::Error::description` calls
+* 32f11aa Update Dockerfile to Rust 1.42
+
## Version 1.1.7
* Improved options for client output thanks to @zicklag (f1f834e8c).
diff --git a/Cargo.toml b/Cargo.toml
index 0dd6056..bf60348 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "roughenough"
-version = "1.1.7"
+version = "1.1.8"
repository = "https://github.com/int08h/roughenough"
authors = ["Stuart Stock <stuart@int08h.com>", "Aaron Hill <aa1ronham@gmail.com>"]
license = "Apache-2.0"
diff --git a/src/lib.rs b/src/lib.rs
index 146d474..944ca57 100644
--- a/src/lib.rs
+++ b/src/lib.rs
@@ -76,7 +76,7 @@ pub use crate::message::RtMessage;
pub use crate::tag::Tag;
/// Version of Roughenough
-pub const VERSION: &str = "1.1.7";
+pub const VERSION: &str = "1.1.8";
/// Roughenough version string enriched with any compile-time optional features
pub fn roughenough_version() -> String {