Skip to content

Commit 161dc11

Browse files
authored
Merge pull request #68 from zendesk/bquorning.add-missing-file
Add missing file to gem
2 parents 0f72b2f + 48be46f commit 161dc11

8 files changed

Lines changed: 11 additions & 6 deletions

File tree

Changelog.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,10 @@ and as of v1.0.0 this project adheres to [Semantic Versioning](https://semver.or
66

77
## [Unreleased]
88

9+
## [1.0.3] - 2021-02-09
10+
### Fixed
11+
- Add missing file to the released gem. (https://github.com/zendesk/active_record_host_pool/pull/68)
12+
913
## [1.0.2] - 2021-02-09
1014
### Fixed
1115
- Fix unintended connection switching while clearing query cache in Rails 6.0. (https://github.com/zendesk/active_record_host_pool/pull/61)

active_record_host_pool.gemspec

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ Gem::Specification.new do |s|
1414
s.files = [
1515
"Readme.md",
1616
"lib/active_record_host_pool.rb",
17+
"lib/active_record_host_pool/clear_query_cache_patch.rb",
1718
"lib/active_record_host_pool/connection_adapter_mixin.rb",
1819
"lib/active_record_host_pool/connection_proxy.rb",
1920
"lib/active_record_host_pool/pool_proxy.rb",

gemfiles/rails4.2.gemfile.lock

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
PATH
22
remote: ..
33
specs:
4-
active_record_host_pool (1.0.2)
4+
active_record_host_pool (1.0.3)
55
activerecord (>= 4.2.0, < 6.1)
66
mysql2
77

gemfiles/rails5.0.gemfile.lock

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
PATH
22
remote: ..
33
specs:
4-
active_record_host_pool (1.0.2)
4+
active_record_host_pool (1.0.3)
55
activerecord (>= 4.2.0, < 6.1)
66
mysql2
77

gemfiles/rails5.1.gemfile.lock

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
PATH
22
remote: ..
33
specs:
4-
active_record_host_pool (1.0.2)
4+
active_record_host_pool (1.0.3)
55
activerecord (>= 4.2.0, < 6.1)
66
mysql2
77

gemfiles/rails5.2.gemfile.lock

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
PATH
22
remote: ..
33
specs:
4-
active_record_host_pool (1.0.2)
4+
active_record_host_pool (1.0.3)
55
activerecord (>= 4.2.0, < 6.1)
66
mysql2
77

gemfiles/rails6.0.gemfile.lock

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
PATH
22
remote: ..
33
specs:
4-
active_record_host_pool (1.0.2)
4+
active_record_host_pool (1.0.3)
55
activerecord (>= 4.2.0, < 6.1)
66
mysql2
77

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# frozen_string_literal: true
22

33
module ActiveRecordHostPool
4-
VERSION = "1.0.2"
4+
VERSION = "1.0.3"
55
end

0 commit comments

Comments
 (0)