diff --git a/CHANGELOG.md b/CHANGELOG.md index 1c6eda72..022981a5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ +1.8.2 +----- +* [Downcase adapter string name for OS compatibility](https://github.com/intridea/multi_json/commit/b8e15a032247a63f1410d21a18add05035f3fa66) + 1.8.1 ----- * [Let the adapter handle strings with invalid encoding](https://github.com/intridea/multi_json/commit/6af2bf87b89f44eabf2ae9ca96779febc65ea94b) diff --git a/lib/multi_json/version.rb b/lib/multi_json/version.rb index db73062c..d3dbe3ff 100644 --- a/lib/multi_json/version.rb +++ b/lib/multi_json/version.rb @@ -2,7 +2,7 @@ module MultiJson class Version MAJOR = 1 unless defined? MultiJson::Version::MAJOR MINOR = 8 unless defined? MultiJson::Version::MINOR - PATCH = 1 unless defined? MultiJson::Version::PATCH + PATCH = 2 unless defined? MultiJson::Version::PATCH PRE = nil unless defined? MultiJson::Version::PRE class << self