Skip to content

Commit e512cc4

Browse files
committed
bump version
1 parent 75f77a7 commit e512cc4

File tree

5 files changed

+14
-10
lines changed

5 files changed

+14
-10
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## 0.2.2
2+
- Fixed missing connection if loaded from YAML
3+
- Added tests for multiple connection switches with another block
4+
15
## 0.2.1
26

37
- Added support for Proc in config

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-
ar_shard (0.2.1)
4+
ar_shard (0.2.2)
55
activerecord (>= 6)
66

77
GEM

Rakefile

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
1-
require "bundler/gem_tasks"
2-
require "rake/testtask"
1+
require 'bundler/gem_tasks'
2+
require 'rake/testtask'
33

44
Rake::TestTask.new(:test) do |t|
5-
t.libs << "test"
6-
t.libs << "lib"
7-
t.test_files = FileList["test/**/*_test.rb"]
5+
t.libs << 'test'
6+
t.libs << 'lib'
7+
t.test_files = FileList['test/**/*_test.rb']
88
end
99

10-
task :default => :test
10+
task default: :test

ar_shard.gemspec

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ Gem::Specification.new do |spec|
66
spec.authors = ['Alex Tsirel']
77
spec.email = ['[email protected]']
88

9-
spec.summary = 'Multibase Support for ActiveRecord Models with dynamic config'
10-
spec.description = 'Multibase Support for ActiveRecord Models with dynamic config'
9+
spec.summary = 'Isolated Multibase Support for ActiveRecord Models with dynamic config'
10+
spec.description = 'Isolated Multibase Support for ActiveRecord Models with dynamic config'
1111
spec.homepage = 'https://github.com/noma4i/ar_shard'
1212
spec.license = 'MIT'
1313
spec.required_ruby_version = Gem::Requirement.new('>= 2.3.0')

lib/ar_shard/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
module ARShard
2-
VERSION = "0.2.1"
2+
VERSION = "0.2.2"
33
end

0 commit comments

Comments
 (0)