diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 00000000..12af4446 --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,15 @@ +## activerecord-turntable 1.1.0 ## + +* AR::Base.clear_active_connections! should be proxied to all shards + +* Reduce unnecessary query when reloading + + +## activerecord-turntable 1.0.1 ## + +* Added missing setting for sequences at README and turntable.yml template. + + +## activerecord-turntable 1.0.0 ## + +* First Release! diff --git a/activerecord-turntable.gemspec b/activerecord-turntable.gemspec index a87e3940..2f82f128 100644 --- a/activerecord-turntable.gemspec +++ b/activerecord-turntable.gemspec @@ -12,7 +12,8 @@ Gem::Specification.new do |s| s.rubyforge_project = "activerecord-turntable" s.extra_rdoc_files = [ "LICENSE.txt", - "README.rdoc" + "README.rdoc", + "CHANGELOG.md" ] s.files = `git ls-files | grep -v "^spec"`.split("\n") diff --git a/lib/active_record/turntable/version.rb b/lib/active_record/turntable/version.rb index 63bfd5a3..63477a44 100644 --- a/lib/active_record/turntable/version.rb +++ b/lib/active_record/turntable/version.rb @@ -1,5 +1,5 @@ module ActiveRecord module Turntable - VERSION = "1.0.1" + VERSION = "1.1.0" end end