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