dry-auto_inject 1.2.0 → 1.2.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: e2aaa8535a986a0617f12d76b7315a9e67af171d5016b2e5a246633b6573fb97
4
- data.tar.gz: d237b98ba264c303ea6f7956068cc7927a7cf7fa0eac5f3f58a05759a5d7f358
3
+ metadata.gz: 853aca224dbd544893d1a4caeb49018aba110e1f4cfcd023f2f85667dc7d27ce
4
+ data.tar.gz: 0cf91111ef31cff7501f53777cfee05f2e5a40d415e8af8eeed351c75325f4cf
5
5
  SHA512:
6
- metadata.gz: 85719f454e9a02bf7de8cdf9ecdda0a78f641b0a15e92bae2a8d386f1f06bbe263f6cd13029c2aeba9b5266638f045e37cbfed24a979aa289bb2d0a5980724f5
7
- data.tar.gz: e150f90bf7123352337c409efb54618a2c6bd560d10e19b8bbe575bf67665f3a9febd23fb3a2427c89f8b168e9b32795b7fd4e8749cde19847992875b3c4f46b
6
+ metadata.gz: b5c2b63eb20ed3cfb196485019f95562b0722ccabac0c459db8e7c93ed731bb0ced4061d7c067920972e0d732e6248980e677730098ea675593e9965ab1cd8c4
7
+ data.tar.gz: 7b8a64deb8484800b0c8836892ba346483ed33bd6dc2eae35c09bfefc7abe75e73843d520833f3daa212e4b55f512a0458a2a2d5a0cb506cb04fcce920674c32
data/CHANGELOG.md CHANGED
@@ -5,6 +5,15 @@ All notable changes to this project will be documented in this file.
5
5
  The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
6
6
  and this project adheres to [Break Versioning](https://www.taoensso.com/break-versioning).
7
7
 
8
+ ## [1.2.1] - 2026-05-26
9
+
10
+ ### Fixed
11
+
12
+ - Load cop classes when the RuboCop plugin is required, so offenses are
13
+ actually reported (@flash-gordon in #100)
14
+
15
+ [1.2.1]: https://github.com/dry-rb/dry-auto_inject/compare/v1.2.0...v1.2.1
16
+
8
17
  ## [1.2.0] - 2026-05-19
9
18
 
10
19
  ### Added
@@ -50,7 +59,7 @@ and this project adheres to [Break Versioning](https://www.taoensso.com/break-ve
50
59
 
51
60
  - Update minimum Ruby version to 3.3. (@timriley)
52
61
 
53
- [Unreleased]: https://github.com/dry-rb/dry-auto_inject/compare/v1.1.0...main
62
+ [1.2.0]: https://github.com/dry-rb/dry-auto_inject/compare/v1.1.0...v1.2.0
54
63
 
55
64
  ## [1.1.0] - 2025-01-07
56
65
 
@@ -2,6 +2,6 @@
2
2
 
3
3
  module Dry
4
4
  module AutoInject
5
- VERSION = "1.2.0"
5
+ VERSION = "1.2.1"
6
6
  end
7
7
  end
@@ -3,6 +3,8 @@
3
3
  require "lint_roller"
4
4
 
5
5
  require "dry/auto_inject/version"
6
+ require_relative "../cop/dry_auto_inject/dependency_order"
7
+ require_relative "../cop/dry_auto_inject/redundant_alias"
6
8
 
7
9
  module RuboCop
8
10
  module DryAutoInject
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: dry-auto_inject
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.2.0
4
+ version: 1.2.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Hanakai team