From 393b7a5fdc954306fe1f1f13ff6d9cb1db70dcbd Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 21 Nov 2025 08:04:35 +0000 Subject: [PATCH] chore(main): release 2.38.0 --- .release-please-manifest.json | 2 +- CHANGELOG.md | 8 ++++++++ Sources/Helpers/Version.swift | 2 +- 3 files changed, 10 insertions(+), 2 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 28c811f9..0e1c6975 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "2.37.0" + ".": "2.38.0" } \ No newline at end of file diff --git a/CHANGELOG.md b/CHANGELOG.md index bcb933bf..c2e9f18d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## [2.38.0](https://github.com/supabase/supabase-swift/compare/v2.37.0...v2.38.0) (2025-11-21) + + +### Features + +* **postgrest:** add missing operators match, imatch, and isDistinct ([#857](https://github.com/supabase/supabase-swift/issues/857)) ([af786cb](https://github.com/supabase/supabase-swift/commit/af786cb012b472dd502974c29c6817f11923901b)) +* **realtime:** improve task lifecycle management and expose public APIs ([#851](https://github.com/supabase/supabase-swift/issues/851)) ([bab4ec0](https://github.com/supabase/supabase-swift/commit/bab4ec0939f719425019a623d2075110cf986059)) + ## [2.37.0](https://github.com/supabase/supabase-swift/compare/v2.36.0...v2.37.0) (2025-11-03) diff --git a/Sources/Helpers/Version.swift b/Sources/Helpers/Version.swift index f2850969..df2ab552 100644 --- a/Sources/Helpers/Version.swift +++ b/Sources/Helpers/Version.swift @@ -1,7 +1,7 @@ import Foundation import XCTestDynamicOverlay -private let _version = "2.37.0" // {x-release-please-version} +private let _version = "2.38.0" // {x-release-please-version} #if DEBUG package let version = isTesting ? "0.0.0" : _version