From 1dbdd97c1376544b9fea2d0ba9bb205ab6c4fcb3 Mon Sep 17 00:00:00 2001 From: Alex Tsirel Date: Sat, 15 Aug 2020 16:05:51 +1000 Subject: [PATCH] drop pry from runtime --- CHANGELOG.md | 3 +++ lib/ar_shard/active_record.rb | 1 - lib/ar_shard/version.rb | 2 +- 3 files changed, 4 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 960af36..ef446de 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,6 @@ +## 0.2.3 +- Removed pry require in runtime + ## 0.2.2 - Fixed missing connection if loaded from YAML - Added tests for multiple connection switches with another block diff --git a/lib/ar_shard/active_record.rb b/lib/ar_shard/active_record.rb index 21335f6..5dc02da 100644 --- a/lib/ar_shard/active_record.rb +++ b/lib/ar_shard/active_record.rb @@ -1,5 +1,4 @@ require 'active_record' -require 'pry' module ActiveRecord mattr_accessor :klass_name diff --git a/lib/ar_shard/version.rb b/lib/ar_shard/version.rb index 4266aef..e2457be 100644 --- a/lib/ar_shard/version.rb +++ b/lib/ar_shard/version.rb @@ -1,3 +1,3 @@ module ARShard - VERSION = "0.2.2" + VERSION = "0.2.3" end