Skip to content

Commit

Permalink
allow psych version > 3 (#142)
Browse files Browse the repository at this point in the history
* allow psych version > 3
  • Loading branch information
ttstarck committed Jan 2, 2024
1 parent 7c6c53c commit d24639c
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 6 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@ Inspired by [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).

Note: this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [0.19.3] - 2024-01-02
### Changed
* Allow `psych` major versions greater than 3.2.

## [0.19.2] - 2023-12-12
### Added
* Add require for `active_support/core_ext` to support active_support >= 7.1 on Ruby 3.2.
Expand Down
10 changes: 6 additions & 4 deletions Gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
PATH
remote: .
specs:
process_settings (0.19.2)
process_settings (0.19.3)
activesupport
json
listen (~> 3.0)
psych (~> 3.2)
psych (>= 3.2)

GEM
remote: http://rubygems.org/
Expand All @@ -26,7 +26,7 @@ GEM
thor (>= 0.14.0)
ast (2.4.2)
base64 (0.2.0)
bigdecimal (3.1.4)
bigdecimal (3.1.5)
bump (0.6.1)
coderay (1.1.3)
concurrent-ruby (1.2.2)
Expand All @@ -52,7 +52,8 @@ GEM
pry (0.14.1)
coderay (~> 1.1)
method_source (~> 1.0)
psych (3.3.4)
psych (5.1.2)
stringio
rainbow (3.1.1)
rake (13.0.6)
rb-fsevent (0.11.2)
Expand Down Expand Up @@ -94,6 +95,7 @@ GEM
simplecov-html (0.12.3)
simplecov-lcov (0.8.0)
simplecov_json_formatter (0.1.4)
stringio (3.1.0)
thor (1.2.1)
tzinfo (2.0.6)
concurrent-ruby (~> 1.0)
Expand Down
2 changes: 1 addition & 1 deletion lib/process_settings/version.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# frozen_string_literal: true

module ProcessSettings
VERSION = '0.19.2'
VERSION = '0.19.3'
end
2 changes: 1 addition & 1 deletion process_settings.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -25,5 +25,5 @@ Gem::Specification.new do |spec|
spec.add_runtime_dependency 'activesupport'
spec.add_runtime_dependency 'json'
spec.add_runtime_dependency 'listen', '~> 3.0'
spec.add_runtime_dependency 'psych', '~> 3.2' # so latest libyaml will be pulled in
spec.add_runtime_dependency 'psych', '>= 3.2' # so latest libyaml will be pulled in
end

0 comments on commit d24639c

Please sign in to comment.