Skip to content

Commit

Permalink
Merge pull request #465 from bkuhlmann/big_decimal
Browse files Browse the repository at this point in the history
Fix BigDecimal warning
  • Loading branch information
timriley committed Jan 5, 2024
2 parents aa4b671 + f5f9a8e commit d2c37a6
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 1 deletion.
4 changes: 4 additions & 0 deletions changelog.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@
---
- version: 1.7.2
date: 2024-01-04
fixed:
- "Fixed BigDecimal warning due to not being required in gemspec (@bkuhlmann in #464)"
- version: 1.7.1
date: 2023-02-17
fixed:
Expand Down
1 change: 1 addition & 0 deletions dry-types.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ Gem::Specification.new do |spec|
spec.required_ruby_version = ">= 3.0"

# to update dependencies edit project.yml
spec.add_runtime_dependency "bigdecimal", "~> 3.0"
spec.add_runtime_dependency "concurrent-ruby", "~> 1.0"
spec.add_runtime_dependency "dry-core", "~> 1.0"
spec.add_runtime_dependency "dry-inflector", "~> 1.0"
Expand Down
2 changes: 1 addition & 1 deletion lib/dry/types/version.rb
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@

module Dry
module Types
VERSION = "1.7.1"
VERSION = "1.7.2"
end
end
1 change: 1 addition & 0 deletions project.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ gemspec:
- rspec
- yard
runtime_dependencies:
- [bigdecimal, "~> 3.0"]
- [concurrent-ruby, "~> 1.0"]
- [zeitwerk, "~> 2.6"]
- [dry-core, "~> 1.0"]
Expand Down

0 comments on commit d2c37a6

Please sign in to comment.