diff --git a/CHANGELOG.md b/CHANGELOG.md index de0887b3..b6cb8f3e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,9 @@ Dalli Changelog Unreleased ========== +3.2.3 +========== + - Sanitize CAS inputs to ensure additional commands are not passed to memcached (xhzeem / petergoldstein) - Sanitize input to flush command to ensure additional commands are not passed to memcached (xhzeem / petergoldstein) - Namespaces passed as procs are now evaluated every time, as opposed to just on initialization (nrw505) diff --git a/dalli.gemspec b/dalli.gemspec index f50d2876..21c2c980 100644 --- a/dalli.gemspec +++ b/dalli.gemspec @@ -13,7 +13,7 @@ Gem::Specification.new do |s| s.files = Dir.glob('lib/**/*') + [ 'LICENSE', 'README.md', - 'History.md', + 'CHANGELOG.md', 'Gemfile' ] s.homepage = 'https://github.com/petergoldstein/dalli' diff --git a/lib/dalli/version.rb b/lib/dalli/version.rb index 9996237a..160f80a2 100644 --- a/lib/dalli/version.rb +++ b/lib/dalli/version.rb @@ -1,7 +1,7 @@ # frozen_string_literal: true module Dalli - VERSION = '3.2.2' + VERSION = '3.2.3' MIN_SUPPORTED_MEMCACHED_VERSION = '1.4' end