From d5cfc06396a342c8912d59c3a6f71a2104f2fc2e Mon Sep 17 00:00:00 2001 From: Matthew Shafer Date: Thu, 4 May 2023 13:52:49 -0700 Subject: [PATCH] Increment version to 2.0.0 --- CHANGELOG.md | 3 ++- lib/circuitbox/version.rb | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index d8b2a89..02ca0cd 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,6 @@ ## Change log -### v2.0.0 (unreleased) +### v2.0.0 +- Add upgrade guide [\#196](https://github.com/yammer/circuitbox/pull/196) - When `Circuitbox::MemoryStore` is used use the monotonic system clock when calculating time windows [\#193](https://github.com/yammer/circuitbox/pull/193) - `Circuitbox::CircuitBreaker`'s `:cache` option has been renamed to `:circuit_store` [\#190](https://github.com/yammer/circuitbox/pull/190) - Improve circuit opening, fetch some keys in bulk [\#188](https://github.com/yammer/circuitbox/pull/188) diff --git a/lib/circuitbox/version.rb b/lib/circuitbox/version.rb index 4f1196f..a712ab1 100644 --- a/lib/circuitbox/version.rb +++ b/lib/circuitbox/version.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true class Circuitbox - VERSION = '2.0.0.pre5' + VERSION = '2.0.0' end