yard-lint 1.10.3 → 1.11.0

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: b257fdb7ca6477899e3be3411289568fea84f44fbc3e06ae10e0803e236c4443
4
- data.tar.gz: 44609a51c40daa3f6b9a0a85ea647448768d4ad34bbd4b99358effee51170f19
3
+ metadata.gz: 670e09e8becdbcef0090965d61aeb47e488601119775ed33b5b6a99d50e04145
4
+ data.tar.gz: 0c1b99fa7aa6357948895c7e120adae3a59f3a0f0bc6da6fc48c5191a62d78f3
5
5
  SHA512:
6
- metadata.gz: b4c98789f3b1bfab2c0cfa1fbdf69801adf0d7b942517fb99f7bb6c75ff3a95f050d7561a543b1d0b6e0ea749d6d63e18b0d6efa179c8d0f4e7d07637d825fed
7
- data.tar.gz: 9bfe860758ef6de5770acfacc2e821661f883491f923d169c7fa32d942c6979f88d68df8f57fc284b461a0e5e5d7661c58200df9c1a3018d5f8a8d50e66149c2
6
+ metadata.gz: 164679ca8bdee70f43561bfeecaa3bee67705c046f77466833469920142733f1311cf19ac5d5856db08f6372200760eb8bb6fbc29170c84b2f48722fc803bbff
7
+ data.tar.gz: b87edd3236cb9aed11e4e61764507678c77fd3a3a1eb887874ac59e9cd255e7e78cc19152a56d8c471762028054268b3d593727ec2f8c7b781ca3060eec9be88
data/CHANGELOG.md CHANGED
@@ -1,3 +1,6 @@
1
+ ## 1.11.0 (2026-08-11)
2
+ - [Maintenance] Re-release of `1.10.3` as `1.11.0` due to new features being present.
3
+
1
4
  ## 1.10.3 (2026-08-05)
2
5
  - **[Feature]** Added `Tags/TagSeparator` (opt-in, disabled by default, severity `convention`) - a stricter sibling of `Tags/TagGroupSeparator`. Where `TagGroupSeparator` only inserts a blank line between different tag *groups* (and therefore can never separate two tags of the same type, such as sibling `@param` tags), `TagSeparator` requires a blank line between *every* pair of consecutive tags. Tags listed under the `Exempt` option may immediately follow the previous tag without a blank line - useful for `@option` tags, which document keys of a preceding `@param` hash and read best when clustered directly beneath it. `RequireAfterDescription` additionally requires a blank line between the description and the first tag.
3
6
  - **[Feature]** `Documentation/UndocumentedObjects` gained an `ExcludedObjects` option that matches the fully-qualified name of any object - class, module, method, or constant - via exact names or `/regex/` patterns anchored to the full path. This closes a gap where constants could never be excluded: `ExcludedMethods` matches only the trailing method name and deliberately ignores classes/modules/constants (so a pattern like `/cache/` cannot silently suppress a class such as `Memcached`), which left no way to skip a constant like `ATui::Input::KEY_A_Z` or to target a single object by its full path. `ExcludedObjects` (e.g. `'/^ATui::Input::KEY_/'`, `'MyApp::Config::DEFAULTS'`, or arity notation `'MyApp::Api#call/1'`) now handles those cases; `ExcludedMethods` behavior is unchanged (#299).
@@ -3,6 +3,6 @@
3
3
  module Yard
4
4
  module Lint
5
5
  # @return [String] version of the YARD Lint gem
6
- VERSION = '1.10.3'
6
+ VERSION = '1.11.0'
7
7
  end
8
8
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: yard-lint
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.10.3
4
+ version: 1.11.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Maciej Mensfeld