From 4755eb60334735d1edf8c3d8f7a98d30df0f3bf5 Mon Sep 17 00:00:00 2001 From: Nikita Shilnikov Date: Wed, 29 May 2019 15:21:17 +0300 Subject: [PATCH] Bump version to 0.8.3 --- CHANGELOG.md | 8 ++++++++ lib/dry/configurable/version.rb | 2 +- 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 62838432..6926170d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,11 @@ +## 0.8.3 - 2019-05-29 + +## Fixed + +* `Configurable#dup` and `Configurable#clone` make a copy of instance-level config so that it doesn't get mutated/shared across instances (flash-gordon) + +[Compare v0.8.2...v0.8.3](https://github.com/dry-rb/dry-configurable/compare/v0.8.2...v0.8.3) + ## 0.8.2 - 2019-02-25 ## Fixed diff --git a/lib/dry/configurable/version.rb b/lib/dry/configurable/version.rb index 308b55e4..23b48d97 100755 --- a/lib/dry/configurable/version.rb +++ b/lib/dry/configurable/version.rb @@ -1,6 +1,6 @@ module Dry module Configurable # @api public - VERSION = '0.8.2'.freeze + VERSION = '0.8.3'.freeze end end