From 93b3c077f33b58477c3cfff246de847e7409e053 Mon Sep 17 00:00:00 2001 From: Koji Onishi Date: Tue, 1 Oct 2024 17:26:35 +0900 Subject: [PATCH] bump to 0.6.0 --- CHANGELOG.md | 6 ++++++ lib/dumped_railers/version.rb | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index f44a48a..21c80a5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -62,3 +62,9 @@ ### Changed - require std gems (e.g. ostruct, forwardable). Users of dumped_railers are no longer need to require them. - Added CI support against Ruby 3.3, 3.2, together with Rails 7.x, while dropping Ruby < 3.2, Rails < 6.1 + +## [0.6.0] +### Added +- Add new options to explicitly allow specific classes for YAML import. +### Changed +- Accept Date, Time, DateTIme together with the classes that are set as ActiveRecord.yaml_column_permitted_classes be default. diff --git a/lib/dumped_railers/version.rb b/lib/dumped_railers/version.rb index 571c2c5..261eb11 100644 --- a/lib/dumped_railers/version.rb +++ b/lib/dumped_railers/version.rb @@ -1,3 +1,3 @@ module DumpedRailers - VERSION = '0.5.0' + VERSION = '0.6.0' end