diff --git a/CHANGELOG.md b/CHANGELOG.md index 99c3e37..28292b8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,11 +1,10 @@ ## [Unreleased] -## [0.3.0] - 2022-09-08 +## [0.3.0] - 2022-09-27 - Fixes defining a nested extension, e.g. `Organization::User` with `app/models/organization/user/extensions/`. - Removes support for defining a nested extension within the namespace file. I couldn't unify it with the fix above, so it went. - ## [0.2.2] - 2022-09-08 - Fixes Zeitwerk 2.6.0 compatibility issue where extensions wouldn't load and throw an exception. See https://github.com/kaspth/conventional_extensions/commit/7fc25f1e860637e8df9fd0e81e7ca038c8c34aa0 diff --git a/Gemfile.lock b/Gemfile.lock index d74d701..9effffb 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - conventional_extensions (0.2.2) + conventional_extensions (0.3.0) GEM remote: https://rubygems.org/ diff --git a/lib/conventional_extensions/version.rb b/lib/conventional_extensions/version.rb index 264296b..c24795f 100644 --- a/lib/conventional_extensions/version.rb +++ b/lib/conventional_extensions/version.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true module ConventionalExtensions - VERSION = "0.2.2" + VERSION = "0.3.0" end