summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStuart Stock <stuart@int08h.com>2020-03-21 13:41:23 -0500
committerStuart Stock <stuart@int08h.com>2020-03-21 13:41:23 -0500
commit8787aa25957aede7afed2c0b0868798e15e122ba (patch)
tree37ae69cc603840b2c81c8bfa92915dd503616098
parent02212e266fbd69a17c1e7fe32b16b113fe0c1999 (diff)
downloadroughenough-8787aa25957aede7afed2c0b0868798e15e122ba.zip
Release 1.1.8
-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 {