Skip to content

Commit e3fa50d

Browse files
Lock JSON version until find route cause
1 parent 6f5e66d commit e3fa50d

File tree

3 files changed

+7
-2
lines changed

3 files changed

+7
-2
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Changelog
22

3+
## 4.0.3
4+
5+
Limit json dependency to < 2.11 to avoid potential breaking changes in json gem 2.11.0
6+
37
## 4.0.2
48

59
Make overwritten Authorization header possible again.

lib/quickpay/api/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
module QuickPay
22
module API
3-
VERSION = "4.0.2".freeze
3+
VERSION = "4.0.3".freeze
44
end
55
end

quickpay-ruby-client.gemspec

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,5 +19,6 @@ Gem::Specification.new do |spec|
1919
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
2020
spec.require_paths = ["lib"]
2121

22-
spec.add_dependency "json", "~> 2", ">= 2.5"
22+
# Allow 2.0 through 2.10.X to avoid breaking changes in 2.11.0
23+
spec.add_dependency "json", "~> 2.0", "< 2.11"
2324
end

0 commit comments

Comments
 (0)