diff options
author | Stuart Stock <stuart@int08h.com> | 2020-03-21 13:41:23 -0500 |
---|---|---|
committer | Stuart Stock <stuart@int08h.com> | 2020-03-21 13:41:23 -0500 |
commit | 8787aa25957aede7afed2c0b0868798e15e122ba (patch) | |
tree | 37ae69cc603840b2c81c8bfa92915dd503616098 | |
parent | 02212e266fbd69a17c1e7fe32b16b113fe0c1999 (diff) | |
download | roughenough-8787aa25957aede7afed2c0b0868798e15e122ba.zip |
Release 1.1.8
-rw-r--r-- | CHANGELOG.md | 11 | ||||
-rw-r--r-- | Cargo.toml | 2 | ||||
-rw-r--r-- | src/lib.rs | 2 |
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). @@ -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" @@ -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 { |