diff --git a/CHANGELOG.md b/CHANGELOG.md index b8a47df..b750e11 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,8 @@ # Changelog ## Unreleased + +## 0.5.0 * Fix aggregations for TS.RANGE command (#34) * Extract client handling into Client module (#32) * Add `uncompressed` param to TS.ADD, TS.INCRBY, TS.DECRBY (#35) diff --git a/Gemfile.lock b/Gemfile.lock index 3c7380f..ee2a74c 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - redis-time-series (0.4.0) + redis-time-series (0.5.0) redis (~> 4.0) GEM diff --git a/lib/redis/time_series/version.rb b/lib/redis/time_series/version.rb index 660563a..6992d86 100644 --- a/lib/redis/time_series/version.rb +++ b/lib/redis/time_series/version.rb @@ -1,6 +1,6 @@ # frozen_string_literal: true class Redis class TimeSeries - VERSION = '0.4.0' + VERSION = '0.5.0' end end