From 0a75bb06039a56f49431c604c9b7a0332ed56f49 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 7 Mar 2025 09:11:59 +0000 Subject: [PATCH] chore(master): release with_advisory_lock 5.2.0 --- .release-please-manifest.json | 2 +- CHANGELOG.md | 12 ++++++++++++ lib/with_advisory_lock/version.rb | 2 +- 3 files changed, 14 insertions(+), 2 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 7690267..b7c790b 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1 +1 @@ -{".":"5.1.0"} +{".":"5.2.0"} diff --git a/CHANGELOG.md b/CHANGELOG.md index 0df25e7..75ae7e1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,17 @@ ## Changelog +## [5.2.0](https://github.com/ClosureTree/with_advisory_lock/compare/with_advisory_lock/v5.1.0...with_advisory_lock/v5.2.0) (2025-03-07) + + +### Features + +* use current connnection instead of the one in ActiveRecord::Base ([#90](https://github.com/ClosureTree/with_advisory_lock/issues/90)) ([c28a172](https://github.com/ClosureTree/with_advisory_lock/commit/c28a172a5a64594448b6090501fc0b8cbace06f6)) + + +### Bug Fixes + +* Removed MySQL unused lock variable and broaden SQLite detection. ([#94](https://github.com/ClosureTree/with_advisory_lock/issues/94)) ([f818a18](https://github.com/ClosureTree/with_advisory_lock/commit/f818a181dde6711c8439c4cbf67c4525a09d346e)) + ## [5.1.0](https://github.com/ClosureTree/with_advisory_lock/compare/with_advisory_lock/v5.0.1...with_advisory_lock/v5.1.0) (2024-01-21) diff --git a/lib/with_advisory_lock/version.rb b/lib/with_advisory_lock/version.rb index c933705..c057616 100644 --- a/lib/with_advisory_lock/version.rb +++ b/lib/with_advisory_lock/version.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true module WithAdvisoryLock - VERSION = Gem::Version.new('5.1.0') + VERSION = Gem::Version.new('5.2.0') end