diff --git a/CHANGELOG.md b/CHANGELOG.md index a5ff45d3..24fedf4d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ +## 2.1.0 (9/20/2020) + +* Minimum JSON version bumped to 2.0.0 + ## 2.0.0 (6/14/2017) * Adds support for Woff2 ([#313](https://github.com/FontCustom/fontcustom/pull/313)) diff --git a/fontcustom.gemspec b/fontcustom.gemspec index ab870ed7..005ff0cd 100644 --- a/fontcustom.gemspec +++ b/fontcustom.gemspec @@ -18,7 +18,7 @@ Gem::Specification.new do |gem| gem.test_files = gem.files.grep(%r{^(test|spec|features)/}) gem.require_paths = ["lib"] - gem.add_dependency "json", "~>1.4" + gem.add_dependency "json", "~>2.0.0" gem.add_dependency "thor", "~>0.14" gem.add_dependency "listen", ">=1.0","<4.0" diff --git a/lib/fontcustom/version.rb b/lib/fontcustom/version.rb index b21cbc85..c2a6b75d 100644 --- a/lib/fontcustom/version.rb +++ b/lib/fontcustom/version.rb @@ -1,3 +1,3 @@ module Fontcustom - VERSION = "2.0.0" + VERSION = "2.1.0" end