From 26c3cf5cf9d32f26e21b7fce4af08a0b62168cf0 Mon Sep 17 00:00:00 2001 From: Yuri Smirnov Date: Mon, 5 Aug 2019 13:12:31 +0300 Subject: [PATCH] bump version + update changelog --- CHANGELOG.md | 10 ++++++++-- lib/memery/version.rb | 2 +- 2 files changed, 9 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index c33566b..68b4701 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,8 +1,12 @@ ## [Unreleased] +## [1.1.0] - 2019-08-05 +### Fixed +- Optimize speed and memory for cached values returns. ([@AlexWayfer]) [#10] + ## [1.0.0] - 2018-08-31 ### Added -- Add `:condition` option for `.memoize` method ([@AlexWayfer]) [#7] +- Add `:condition` option for `.memoize` method. ([@AlexWayfer]) [#7] ## [0.6.0] - 2018-04-20 ### Added @@ -15,10 +19,12 @@ [0.5.0]: https://github.com/tycooon/memery/tree/v0.5.0 [0.6.0]: https://github.com/tycooon/memery/compare/v0.5.0...v0.6.0 [1.0.0]: https://github.com/tycooon/memery/compare/v0.6.0...v1.0.0 -[Unreleased]: https://github.com/tycooon/memery/compare/v0.6.0...HEAD +[1.1.0]: https://github.com/tycooon/memery/compare/v1.0.0...v1.1.0 +[Unreleased]: https://github.com/tycooon/memery/compare/v1.1.0...HEAD [@tycooon]: https://github.com/tycooon [@AlexWayfer]: https://github.com/AlexWayfer [#3]: https://github.com/tycooon/memery/pull/3 [#7]: https://github.com/tycooon/memery/pull/7 +[#10]: https://github.com/tycooon/memery/pull/10 diff --git a/lib/memery/version.rb b/lib/memery/version.rb index 62394fd..1784f6e 100644 --- a/lib/memery/version.rb +++ b/lib/memery/version.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true module Memery - VERSION = "1.0.0" + VERSION = "1.1.0" end