diff --git a/CHANGELOG.md b/CHANGELOG.md index d5f205c..c445f1c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,10 @@ # Changelog +## 2.3.0 2023-06-05 +* Adds has_and_belongs_to_many feature with tenant (#193) +* Removes eol ruby versions +* Adds documentation in ReadTheDocs platform (#196) +* Organizes badges in documentation and README.md (#197) +* Wrap ActiveRecord::Base with ActiveSupport.on_load (#199) ## 2.2.0 2022-12-06 * Handle changing tenant from `nil` to a value [#173](https://github.com/citusdata/activerecord-multi-tenant/pull/173) diff --git a/lib/activerecord-multi-tenant/version.rb b/lib/activerecord-multi-tenant/version.rb index 480a019..20a076e 100644 --- a/lib/activerecord-multi-tenant/version.rb +++ b/lib/activerecord-multi-tenant/version.rb @@ -1,3 +1,3 @@ module MultiTenant - VERSION = '2.2.0'.freeze + VERSION = '2.3.0'.freeze end diff --git a/spec/spec_helper.rb b/spec/spec_helper.rb index a64d41d..2fdb994 100644 --- a/spec/spec_helper.rb +++ b/spec/spec_helper.rb @@ -18,6 +18,7 @@ add_group 'Lib', '/lib' # Include the lib directory for coverage puts "Tracked files: #{SimpleCov.tracked_files}" end + SimpleCov.minimum_coverage 80 require 'simplecov-cobertura' SimpleCov.formatter = SimpleCov::Formatter::CoberturaFormatter