diff --git a/CHANGELOG.md b/CHANGELOG.md index c5fd3e5..b1546be 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,17 @@ # Changelog +## [v1.2.0](https://github.com/bensheldon/activerecord-has_some_of_many/tree/v1.2.0) (2024-09-12) + +[Full Changelog](https://github.com/bensheldon/activerecord-has_some_of_many/compare/v1.1.0...v1.2.0) + +**Fixed bugs:** + +- build: only include the needed parts of the Rails meta-gem [\#11](https://github.com/bensheldon/activerecord-has_some_of_many/pull/11) ([bf4](https://github.com/bf4)) + +**Closed issues:** + +- Is it possible to use `joins` with `has_one_of_many` associations? [\#9](https://github.com/bensheldon/activerecord-has_some_of_many/issues/9) + ## [v1.1.0](https://github.com/bensheldon/activerecord-has_some_of_many/tree/v1.1.0) (2024-09-08) [Full Changelog](https://github.com/bensheldon/activerecord-has_some_of_many/compare/v1.0.1...v1.1.0) diff --git a/Gemfile.lock b/Gemfile.lock index 68370d5..6e328f3 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - activerecord-has_some_of_many (1.1.0) + activerecord-has_some_of_many (1.2.0) activerecord (>= 7.0.0.alpha) railties (>= 7.0.0.alpha) diff --git a/checksums/activerecord-has_some_of_many-1.2.0.gem.sha256 b/checksums/activerecord-has_some_of_many-1.2.0.gem.sha256 new file mode 100644 index 0000000..cc369e4 --- /dev/null +++ b/checksums/activerecord-has_some_of_many-1.2.0.gem.sha256 @@ -0,0 +1 @@ +acd03fd4ef141ea0938010683cb94c06378a6ddf84445fa4e3e4581543adc327 diff --git a/checksums/activerecord-has_some_of_many-1.2.0.gem.sha512 b/checksums/activerecord-has_some_of_many-1.2.0.gem.sha512 new file mode 100644 index 0000000..b114907 --- /dev/null +++ b/checksums/activerecord-has_some_of_many-1.2.0.gem.sha512 @@ -0,0 +1 @@ +464df036adf53a2afe64064673f23069ab672f5f180786f7e5973628f2fe0e8ebee7cd3213fc7cbb6afa2aa01bef83f680759061248dd4755dea6ae34e9eae1e diff --git a/lib/activerecord/has_some_of_many/version.rb b/lib/activerecord/has_some_of_many/version.rb index 0493c21..7d3943e 100644 --- a/lib/activerecord/has_some_of_many/version.rb +++ b/lib/activerecord/has_some_of_many/version.rb @@ -2,6 +2,6 @@ module ActiveRecord module HasSomeOfMany - VERSION = "1.1.0" + VERSION = "1.2.0" end end