From 3718c35b2d13d39749d50cc4d72efb4481bf2309 Mon Sep 17 00:00:00 2001 From: wata727 Date: Fri, 21 Jul 2023 15:49:06 +0900 Subject: [PATCH] Bump up version to v4.2.0 --- CHANGELOG.md | 22 ++++++++++++++++++++++ lib/activerecord-bitemporal/version.rb | 2 +- 2 files changed, 23 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 1d1d636..90acd2b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,27 @@ # Changelog +## 4.2.0 + +### Added + +- [Allow passing `operated_at` to destroy #138](https://github.com/kufu/activerecord-bitemporal/pull/138) + +### Changed + +- [Change not to create history when destroying with `force_update` #135](https://github.com/kufu/activerecord-bitemporal/pull/135) +- [Raise `ValidDatetimeRangeError` instead of `RecordInvalid` in `_update_row` #136](https://github.com/kufu/activerecord-bitemporal/pull/136) + +### Deprecated + +### Removed + +### Fixed + +### Chores + +- [Fix for RSpec deprecated warning #132](https://github.com/kufu/activerecord-bitemporal/pull/132) +- [Add some files to .gitignore #134](https://github.com/kufu/activerecord-bitemporal/pull/134) + ## 4.1.0 ### Added diff --git a/lib/activerecord-bitemporal/version.rb b/lib/activerecord-bitemporal/version.rb index 01bc56e..b21e9c1 100644 --- a/lib/activerecord-bitemporal/version.rb +++ b/lib/activerecord-bitemporal/version.rb @@ -2,6 +2,6 @@ module ActiveRecord module Bitemporal - VERSION = "4.1.0" + VERSION = "4.2.0" end end