Skip to content

Commit

Permalink
Gemspec should be more tolerant of bigdecimal versions
Browse files Browse the repository at this point in the history
  • Loading branch information
ohler55 committed Dec 11, 2023
1 parent b76175c commit 1e15d50
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
@@ -1,5 +1,9 @@
# CHANGELOG

## 3.16.3 - 2023-12-11

- Fixed the gemspec to allow earlier versions of the bigdecimal gem.

## 3.16.2 - 2023-12-06

- Fixed documentation formatting.
Expand Down
2 changes: 1 addition & 1 deletion lib/oj/version.rb
@@ -1,4 +1,4 @@
module Oj
# Current version of the module.
VERSION = '3.16.2'
VERSION = '3.16.3'
end
2 changes: 1 addition & 1 deletion oj.gemspec
Expand Up @@ -29,7 +29,7 @@ Gem::Specification.new do |s|
s.extra_rdoc_files = ['README.md', 'LICENSE', 'CHANGELOG.md', 'RELEASE_NOTES.md'] + Dir['pages/*.md']
s.rdoc_options = ['--title', 'Oj', '--main', 'README.md']

s.add_runtime_dependency 'bigdecimal', '~> 3.1'
s.add_runtime_dependency 'bigdecimal', '>= 3.0'
s.add_development_dependency 'minitest', '~> 5'
s.add_development_dependency 'rake-compiler', '>= 0.9', '< 2.0'
s.add_development_dependency 'test-unit', '~> 3.0'
Expand Down

0 comments on commit 1e15d50

Please sign in to comment.