diff --git a/CHANGELOG b/CHANGELOG index dc18371..d665648 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,3 +1,7 @@ +v1.1.0 + - 2013/11/20: refactor(all): back delete_all! methods (Artem Napolskih) + - 2013/11/15: refactor(all): extract Cluster and Partition classes (Artem Napolskih) + - 2013/11/15: refactor(all): shared code of clustering and partitioning extracted into module (Napolskih) v1.0.1 - 2013/10/21: feature(hash_counter): method date when called with a block, now returns the total number of lines (Artem Napolskih) @@ -8,7 +12,6 @@ v1.0.1 - 2013/09/13: docs(all): documenting (Artem Napolskih) v1.0.0beta1 - - 2013/09/13: Release 1.0.0beta1 (Artem Napolskih) - 2013/09/12: feature(all) introduce key and value delimiters (Artem Napolskih) - 2013/09/12: feature(unique_values_list): fast (non blocking) unique values list added (Artem Napolskih) - 2013/09/11: Initial commit (Artem Napolskih) diff --git a/VERSION b/VERSION index 7f20734..1cc5f65 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -1.0.1 \ No newline at end of file +1.1.0 \ No newline at end of file diff --git a/lib/redis_counters/version.rb b/lib/redis_counters/version.rb index c611dc9..fe2b59a 100644 --- a/lib/redis_counters/version.rb +++ b/lib/redis_counters/version.rb @@ -1,3 +1,3 @@ module RedisCounters - VERSION = '1.0.1' + VERSION = '1.1.0' end \ No newline at end of file diff --git a/tasks/gem.rake b/tasks/gem.rake index 83c2239..15ceaac 100644 --- a/tasks/gem.rake +++ b/tasks/gem.rake @@ -3,8 +3,9 @@ desc 'Release gem (build and upload to gem repo)' task :release => [ :ensure_master, - :build, + :check, 'version:release', + :build, :tag, :push, :upload