From 288481414bc659365b2e36b722b9b126002a7e27 Mon Sep 17 00:00:00 2001 From: Jury Razumau Date: Mon, 18 Sep 2023 12:52:56 +0200 Subject: [PATCH] bump version to 3.10.0 --- CHANGELOG.md | 13 +++++++++++++ lib/property_sets/version.rb | 2 +- 2 files changed, 14 insertions(+), 1 deletion(-) create mode 100644 CHANGELOG.md diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..ba42bc5 --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,13 @@ +# Changelog + +All notable changes to this project will be documented in this file. + +The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), +and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). + +## [Unreleased] + +## [3.10.0] - 2023-09-18 + +* Property models now inherit from the same parent as their owners (this unblocks [using multiple databases natively in Rails](https://guides.rubyonrails.org/active_record_multiple_databases.html)). +* Dropped support for Rails 5. diff --git a/lib/property_sets/version.rb b/lib/property_sets/version.rb index a57ac97..a6282b1 100644 --- a/lib/property_sets/version.rb +++ b/lib/property_sets/version.rb @@ -1,3 +1,3 @@ module PropertySets - VERSION = "3.9.0" + VERSION = "3.10.0" end