From 09971085ba1835e71f6e8120473be0f383ea3361 Mon Sep 17 00:00:00 2001 From: Tyler Neely Date: Thu, 22 Apr 2021 14:10:56 +0200 Subject: [PATCH] Cut 0.9.14 --- CHANGELOG.md | 15 +++++++++++++++ Cargo.toml | 2 +- async-nats/Cargo.toml | 4 ++-- 3 files changed, 18 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index ade8059c8..ca568efca 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,18 @@ +# 0.9.14 + +## New Features + +- #173 `Options::with_static_credentials` adds + support for static credential files for use + in environments where they are injected into + the process by means other than an on-disk file. +- #174 `IntervalTree` now has the methods `min`, + `max`, and `gaps` for getting the minimum, + maximum, and non-contiguous gaps for the tracked + intervals, for use in situations where users + may want to implement their own deduplication + strategies. + # 0.9.13 ## Bug Fixes diff --git a/Cargo.toml b/Cargo.toml index de02f26d1..08175e997 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "nats" -version = "0.9.13" +version = "0.9.14" description = "A Rust NATS client" authors = ["Derek Collison ", "Tyler Neely ", "Stjepan Glavina "] edition = "2018" diff --git a/async-nats/Cargo.toml b/async-nats/Cargo.toml index 92efd08b8..910fb966d 100644 --- a/async-nats/Cargo.toml +++ b/async-nats/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "async-nats" -version = "0.9.13" +version = "0.9.14" description = "An async Rust NATS client" authors = ["Derek Collison ", "Tyler Neely ", "Stjepan Glavina "] edition = "2018" @@ -17,7 +17,7 @@ maintenance = { status = "actively-developed" } [dependencies] blocking = "1.0.2" -nats = { path = "..", version = "0.9.13" } +nats = { path = "..", version = "0.9.14" } [dev-dependencies] smol = "1.2.5"