From 6ad4cf1fb2e720a758e923718d547711c9fc9508 Mon Sep 17 00:00:00 2001 From: Pedro Carbajal Date: Fri, 22 Dec 2023 12:42:18 +0900 Subject: [PATCH] Bump version to 0.26.0.rc1; update CHANGELOG and README --- CHANGELOG.md | 7 ++++++- README.md | 4 ++-- lib/fmrest/version.rb | 2 +- 3 files changed, 9 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index cd39236..e641f65 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,11 @@ ## Changelog -### 0.25.0 +### 0.26.0 + +* Add support for ActiveSupport 7.1 +* Drop support for ActiveSupport < 5.2 + +### 0.25.0-rc1 * Add `.and` query method * Fix crash when `.match` query method was given non-string values diff --git a/README.md b/README.md index b3ca540..fe354f5 100644 --- a/README.md +++ b/README.md @@ -584,11 +584,11 @@ FM Data API reference: https://help.claris.com/en/data-api-guide/ \* You can manually supply the URL and JSON to a `FmRest` connection. -## Supported Ruby versions +## Supported Ruby and Rails versions The latest fmrest-ruby is [tested against](https://github.com/beezwax/fmrest-ruby/actions?query=workflow%3ACI) -Ruby 2.7 through 3.2. +Ruby 3.0 through 3.3.0-rc1, and Rails (ActiveSupport) 6.1 through 7.1. ## Gem development diff --git a/lib/fmrest/version.rb b/lib/fmrest/version.rb index 019585f..4384e18 100644 --- a/lib/fmrest/version.rb +++ b/lib/fmrest/version.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true module FmRest - VERSION = "0.25.0.rc1" + VERSION = "0.26.0.rc1" end