Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixed BigDecimal warning #465

Merged
merged 2 commits into from
Jan 5, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading