mdrefcheck 0.1.1__tar.gz → 0.1.5__tar.gz
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.
Potentially problematic release.
This version of mdrefcheck might be problematic. Click here for more details.
- {mdrefcheck-0.1.1 → mdrefcheck-0.1.5}/.github/workflows/ci.yml +8 -5
- mdrefcheck-0.1.5/CHANGELOG.md +54 -0
- {mdrefcheck-0.1.1 → mdrefcheck-0.1.5}/Cargo.lock +1 -1
- {mdrefcheck-0.1.1 → mdrefcheck-0.1.5}/Cargo.toml +3 -3
- {mdrefcheck-0.1.1 → mdrefcheck-0.1.5}/PKG-INFO +3 -3
- {mdrefcheck-0.1.1 → mdrefcheck-0.1.5}/pyproject.toml +2 -2
- mdrefcheck-0.1.1/CHANGELOG.md +0 -26
- {mdrefcheck-0.1.1 → mdrefcheck-0.1.5}/.gitignore +0 -0
- {mdrefcheck-0.1.1 → mdrefcheck-0.1.5}/LICENSE +0 -0
- {mdrefcheck-0.1.1 → mdrefcheck-0.1.5}/README.md +0 -0
- {mdrefcheck-0.1.1 → mdrefcheck-0.1.5}/release.toml +0 -0
- {mdrefcheck-0.1.1 → mdrefcheck-0.1.5}/rustfmt.toml +0 -0
- {mdrefcheck-0.1.1 → mdrefcheck-0.1.5}/src/checks/email.rs +0 -0
- {mdrefcheck-0.1.1 → mdrefcheck-0.1.5}/src/checks/image.rs +0 -0
- {mdrefcheck-0.1.1 → mdrefcheck-0.1.5}/src/checks/section.rs +0 -0
- {mdrefcheck-0.1.1 → mdrefcheck-0.1.5}/src/checks.rs +0 -0
- {mdrefcheck-0.1.1 → mdrefcheck-0.1.5}/src/config.rs +0 -0
- {mdrefcheck-0.1.1 → mdrefcheck-0.1.5}/src/diagnostics.rs +0 -0
- {mdrefcheck-0.1.1 → mdrefcheck-0.1.5}/src/lib.rs +0 -0
- {mdrefcheck-0.1.1 → mdrefcheck-0.1.5}/src/main.rs +0 -0
- {mdrefcheck-0.1.1 → mdrefcheck-0.1.5}/src/parser.rs +0 -0
- {mdrefcheck-0.1.1 → mdrefcheck-0.1.5}/src/scanner.rs +0 -0
- {mdrefcheck-0.1.1 → mdrefcheck-0.1.5}/src/utils.rs +0 -0
|
@@ -151,6 +151,13 @@ jobs:
|
|
|
151
151
|
id-token: write
|
|
152
152
|
attestations: write
|
|
153
153
|
steps:
|
|
154
|
+
- uses: actions/checkout@v4
|
|
155
|
+
|
|
156
|
+
- name: Publish to crates.io
|
|
157
|
+
env:
|
|
158
|
+
CARGO_REGISTRY_TOKEN: ${{ secrets.CARGO_REGISTRY_TOKEN_PUBNEW }}
|
|
159
|
+
run: cargo publish --no-verify
|
|
160
|
+
|
|
154
161
|
- uses: actions/download-artifact@v4
|
|
155
162
|
|
|
156
163
|
- name: Generate artifact attestation
|
|
@@ -166,16 +173,12 @@ jobs:
|
|
|
166
173
|
command: upload
|
|
167
174
|
args: --non-interactive --skip-existing wheels-*/*
|
|
168
175
|
|
|
169
|
-
- name: Publish to crates.io
|
|
170
|
-
env:
|
|
171
|
-
CARGO_REGISTRY_TOKEN: ${{ secrets.CARGO_REGISTRY_TOKEN_PUBNEW }}
|
|
172
|
-
run: cargo publish --no-verify
|
|
173
|
-
|
|
174
176
|
- name: Create GitHub Release
|
|
175
177
|
uses: softprops/action-gh-release@v1
|
|
176
178
|
with:
|
|
177
179
|
name: Release ${{ github.ref_name }}
|
|
178
180
|
tag_name: ${{ github.ref_name }}
|
|
179
181
|
body_path: CHANGELOG.md
|
|
182
|
+
files: wheels-*/*
|
|
180
183
|
env:
|
|
181
184
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
@@ -0,0 +1,54 @@
|
|
|
1
|
+
# Changelog
|
|
2
|
+
|
|
3
|
+
## [0.1.4] - 2025-09-14
|
|
4
|
+
|
|
5
|
+
### CI
|
|
6
|
+
|
|
7
|
+
- Move cargo pyblish before artifacts staff
|
|
8
|
+
|
|
9
|
+
## [0.1.3] - 2025-09-14
|
|
10
|
+
|
|
11
|
+
### CI
|
|
12
|
+
|
|
13
|
+
- Put artifacts outside of repo to prevent dirty issues
|
|
14
|
+
|
|
15
|
+
## [0.1.3] - 2025-09-14
|
|
16
|
+
|
|
17
|
+
### CI
|
|
18
|
+
|
|
19
|
+
- Remove dist folder nesting on release
|
|
20
|
+
|
|
21
|
+
## [0.1.2] - 2025-09-14
|
|
22
|
+
|
|
23
|
+
### Documentation
|
|
24
|
+
|
|
25
|
+
- Adjust repo and home links to github
|
|
26
|
+
|
|
27
|
+
### CI
|
|
28
|
+
|
|
29
|
+
- Fix release steps
|
|
30
|
+
|
|
31
|
+
## [0.1.1] - 2025-09-14
|
|
32
|
+
|
|
33
|
+
### Documentation
|
|
34
|
+
|
|
35
|
+
- Define manual changelog file
|
|
36
|
+
|
|
37
|
+
### Other
|
|
38
|
+
|
|
39
|
+
- Upgrade deps
|
|
40
|
+
|
|
41
|
+
### Miscellaneous Tasks
|
|
42
|
+
|
|
43
|
+
- Adjust pre-release-commit-message
|
|
44
|
+
|
|
45
|
+
## [0.1.0] - 2025-07-06
|
|
46
|
+
|
|
47
|
+
### Features
|
|
48
|
+
|
|
49
|
+
- Initial commit
|
|
50
|
+
|
|
51
|
+
### Miscellaneous Tasks
|
|
52
|
+
|
|
53
|
+
- Initial pipeline, release, LICENSE
|
|
54
|
+
|
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
[package]
|
|
2
2
|
name = "mdrefcheck"
|
|
3
|
-
version = "0.1.
|
|
3
|
+
version = "0.1.5"
|
|
4
4
|
edition = "2024"
|
|
5
5
|
readme = "README.md"
|
|
6
6
|
description = "A CLI tool to validate references in markdown files."
|
|
7
7
|
authors = ["gospodima <dimasc28@gmail.com>"]
|
|
8
8
|
license = "MIT"
|
|
9
|
-
repository = "https://
|
|
10
|
-
homepage = "https://
|
|
9
|
+
repository = "https://github.com/gospodima/mdrefcheck"
|
|
10
|
+
homepage = "https://github.com/gospodima/mdrefcheck"
|
|
11
11
|
keywords = ["markdown", "cli", "reference", "link-checker", "docs"]
|
|
12
12
|
categories = ["command-line-utilities", "development-tools"]
|
|
13
13
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: mdrefcheck
|
|
3
|
-
Version: 0.1.
|
|
3
|
+
Version: 0.1.5
|
|
4
4
|
Classifier: Development Status :: 4 - Beta
|
|
5
5
|
Classifier: Environment :: Console
|
|
6
6
|
Classifier: Intended Audience :: Developers
|
|
@@ -12,12 +12,12 @@ Classifier: Topic :: Software Development :: Quality Assurance
|
|
|
12
12
|
Classifier: Topic :: Utilities
|
|
13
13
|
License-File: LICENSE
|
|
14
14
|
Summary: A CLI tool to validate references in markdown files.
|
|
15
|
-
Home-Page: https://
|
|
15
|
+
Home-Page: https://github.com/gospodima/mdrefcheck
|
|
16
16
|
Author-email: gospodima <dimasc28@gmail.com>
|
|
17
17
|
License-Expression: MIT
|
|
18
18
|
Requires-Python: >=3.7
|
|
19
19
|
Description-Content-Type: text/markdown; charset=UTF-8; variant=GFM
|
|
20
|
-
Project-URL: Repository, https://
|
|
20
|
+
Project-URL: Repository, https://github.com/gospodima/mdrefcheck
|
|
21
21
|
|
|
22
22
|
# mdrefcheck
|
|
23
23
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
[project]
|
|
2
2
|
name = "mdrefcheck"
|
|
3
|
-
version = "0.1.
|
|
3
|
+
version = "0.1.5"
|
|
4
4
|
description = "A CLI tool to validate references in markdown files."
|
|
5
5
|
readme = "README.md"
|
|
6
6
|
authors = [
|
|
@@ -22,7 +22,7 @@ classifiers = [
|
|
|
22
22
|
]
|
|
23
23
|
|
|
24
24
|
[project.urls]
|
|
25
|
-
Repository = "https://
|
|
25
|
+
Repository = "https://github.com/gospodima/mdrefcheck"
|
|
26
26
|
|
|
27
27
|
[build-system]
|
|
28
28
|
requires = ["maturin>=1.0"]
|
mdrefcheck-0.1.1/CHANGELOG.md
DELETED
|
@@ -1,26 +0,0 @@
|
|
|
1
|
-
# Changelog
|
|
2
|
-
|
|
3
|
-
## [0.1.1] - 2025-09-14
|
|
4
|
-
|
|
5
|
-
### Documentation
|
|
6
|
-
|
|
7
|
-
- Define manual changelog file
|
|
8
|
-
|
|
9
|
-
### Other
|
|
10
|
-
|
|
11
|
-
- Upgrade deps
|
|
12
|
-
|
|
13
|
-
### Miscellaneous Tasks
|
|
14
|
-
|
|
15
|
-
- Adjust pre-release-commit-message
|
|
16
|
-
|
|
17
|
-
## [0.1.0] - 2025-07-06
|
|
18
|
-
|
|
19
|
-
### Features
|
|
20
|
-
|
|
21
|
-
- Initial commit
|
|
22
|
-
|
|
23
|
-
### Miscellaneous Tasks
|
|
24
|
-
|
|
25
|
-
- Initial pipeline, release, LICENSE
|
|
26
|
-
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|