From 8e0baea4b2900c0f03b73578ae5766fd0475b860 Mon Sep 17 00:00:00 2001 From: Matt Cruz Date: Tue, 24 Dec 2024 12:05:11 -0500 Subject: [PATCH] Bump gem to version 0.2.0 --- CHANGELOG.md | 19 ++++++++++++------- active_record_proxy_adapters.gemspec | 2 +- lib/active_record_proxy_adapters/version.rb | 2 +- 3 files changed, 14 insertions(+), 9 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index a7478f8..2a8d51f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,21 +1,26 @@ ## [Unreleased] -- Add custom log subscriber to tag queries based on the adapter being used -- Fix replica connection pool getter when database configurations have multiple replicas -- Retrieve replica pool without checking out a connection +## [0.2.0] - 2024-12-24 + +- Add custom log subscriber to tag queries based on the adapter being used (68b8c1f4191388eb957bf12e0f84289da667e940) + +## [0.1.3] - 2024-12-24 + +- Fix replica connection pool getter when database configurations have multiple replicas (ea5a33997da45ac073f166b3fbd2d12426053cd6) +- Retrieve replica pool without checking out a connection (6470ef58e851082ae1f7a860ecdb5b451ef903c8) ## [0.1.2] - 2024-12-16 -- Fix CTE regex matcher (4b1d10b) +- Fix CTE regex matcher (4b1d10bfd952fb1f5b102de8cc1a5bd05d25f5e9) ## [0.1.1] - 2024-11-27 -- Enable RubyGems MFA (2a71b1f) +- Enable RubyGems MFA (2a71b1f4354fb966cc0aa68231ca5837814e07ee) ## [0.1.0] - 2024-11-19 -- Add PostgreSQLProxyAdapter (2b3bb9f) +- Add PostgreSQLProxyAdapter (2b3bb9f7359139519b32af3018ceb07fed8c6b33) ## [0.1.0.rc2] - 2024-10-28 -- Add PostgreSQLProxyAdapter (2b3bb9f) +- Add PostgreSQLProxyAdapter (2b3bb9f7359139519b32af3018ceb07fed8c6b33) diff --git a/active_record_proxy_adapters.gemspec b/active_record_proxy_adapters.gemspec index 863e11a..828b61a 100644 --- a/active_record_proxy_adapters.gemspec +++ b/active_record_proxy_adapters.gemspec @@ -32,7 +32,7 @@ Gem::Specification.new do |spec| spec.files = IO.popen(%w[git ls-files -z], chdir: __dir__, err: IO::NULL) do |ls| ls.readlines("\x0", chomp: true).reject do |f| (f == gemspec) || - f.start_with?(*%w[bin/ test/ spec/ features/ .git .gitlab-ci.yml appveyor Gemfile]) + f.start_with?(*%w[bin/ test/ spec/ features/ .git .gitlab-ci.yml appveyor Gemfile Rakefile]) end end spec.bindir = "exe" diff --git a/lib/active_record_proxy_adapters/version.rb b/lib/active_record_proxy_adapters/version.rb index e2eae26..6c58475 100644 --- a/lib/active_record_proxy_adapters/version.rb +++ b/lib/active_record_proxy_adapters/version.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true module ActiveRecordProxyAdapters - VERSION = "0.1.2" + VERSION = "0.2.0" end