yard-markdown-relative-links 0.2.0 → 0.3.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: fbcb5b063125d5b23b85d928be3f180acc9c225504b93cf2ed75eb536e5e3971
4
- data.tar.gz: fe4b93bcd506fae09bb4975aa0313729e1c64654b3f599e4da49e061d6264674
3
+ metadata.gz: 603408929174cb58c7ba1919487c35b0ee8ac45436eaf888408e115f1a6343ee
4
+ data.tar.gz: '0650109ce43f787a5036db724961bfffa8790fee3bbcc8399aeca81fc3e8b31c'
5
5
  SHA512:
6
- metadata.gz: 2e403985e27ffc84edc382582b47530428cca504b38668a1410d7777d6c04b4be42482321a72af1ab174473d2f44a2cb91433b909b8aa0fa1923bb26d3a6ab0e
7
- data.tar.gz: 13ad0ea218d206df70ca047eb183212e6c627587aacb63da22861a211034aff20f61411283329e9619208ae387cd371ab0ba781fe2e2b8565bf4322371b365f2
6
+ metadata.gz: d8826ab8a61a6eb6cf53b3f9fa2c1ccc49f74e6ddd7499f8d4f0ca1382d1c99d055103d8b18dfeca72fdfa87cbba5a4c75fd13483b077c0a712f396e4dccd804
7
+ data.tar.gz: d1cf71c6eca19f1edfec0c9458054dcfe960e329678688f31a1c46d9d2ee1cac95a0c4a7e1764dcd16d9d7e4a9336db791172194819cdf98fd0b8467adfa1872
data/CHANGELOG.md CHANGED
@@ -5,6 +5,12 @@ 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.1.0/),
6
6
  and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7
7
 
8
+ ## [0.3.0] - 2026-03-04
9
+
10
+ ### Fixed
11
+
12
+ - Corrected README usage to the actual YARD plugin identifier: `--plugin markdown-relative-links`
13
+
8
14
  ## [0.2.0] - 2026-03-03
9
15
 
10
16
  ### Changed
data/README.md CHANGED
@@ -41,9 +41,12 @@ gem install yard-markdown-relative-links
41
41
  Add this line to your application's `.yardopts`:
42
42
 
43
43
  ```
44
- --plugin relative_markdown_links
44
+ --plugin markdown-relative-links
45
45
  ```
46
46
 
47
+ Important: the YARD plugin key is `markdown-relative-links`.
48
+ Do not use `--plugin relative_markdown_links`, `--plugin yard-relative_markdown_links`, or `--plugin yard-markdown-relative-links`.
49
+
47
50
  You'll also need to make sure your Markdown files are processed by YARD. To include all Markdown files in your project, add the following lines to the end of your application's `.yardopts`:
48
51
 
49
52
  ```
@@ -55,7 +58,7 @@ You'll also need to make sure your Markdown files are processed by YARD. To incl
55
58
 
56
59
  ```
57
60
  --markup markdown
58
- --plugin relative_markdown_links
61
+ --plugin markdown-relative-links
59
62
  --readme README.md
60
63
  -
61
64
  docs/*.md
@@ -2,6 +2,6 @@
2
2
 
3
3
  module YARD
4
4
  module RelativeMarkdownLinks
5
- VERSION = '0.2.0'
5
+ VERSION = '0.3.0'
6
6
  end
7
7
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: yard-markdown-relative-links
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.0
4
+ version: 0.3.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Daniel Harrington