mdrefcheck 0.1.1__tar.gz → 0.1.3__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.3}/.github/workflows/ci.yml +2 -0
- {mdrefcheck-0.1.1 → mdrefcheck-0.1.3}/CHANGELOG.md +16 -0
- {mdrefcheck-0.1.1 → mdrefcheck-0.1.3}/Cargo.lock +1 -1
- {mdrefcheck-0.1.1 → mdrefcheck-0.1.3}/Cargo.toml +3 -3
- {mdrefcheck-0.1.1 → mdrefcheck-0.1.3}/PKG-INFO +2 -2
- {mdrefcheck-0.1.1 → mdrefcheck-0.1.3}/pyproject.toml +1 -1
- {mdrefcheck-0.1.1 → mdrefcheck-0.1.3}/.gitignore +0 -0
- {mdrefcheck-0.1.1 → mdrefcheck-0.1.3}/LICENSE +0 -0
- {mdrefcheck-0.1.1 → mdrefcheck-0.1.3}/README.md +0 -0
- {mdrefcheck-0.1.1 → mdrefcheck-0.1.3}/release.toml +0 -0
- {mdrefcheck-0.1.1 → mdrefcheck-0.1.3}/rustfmt.toml +0 -0
- {mdrefcheck-0.1.1 → mdrefcheck-0.1.3}/src/checks/email.rs +0 -0
- {mdrefcheck-0.1.1 → mdrefcheck-0.1.3}/src/checks/image.rs +0 -0
- {mdrefcheck-0.1.1 → mdrefcheck-0.1.3}/src/checks/section.rs +0 -0
- {mdrefcheck-0.1.1 → mdrefcheck-0.1.3}/src/checks.rs +0 -0
- {mdrefcheck-0.1.1 → mdrefcheck-0.1.3}/src/config.rs +0 -0
- {mdrefcheck-0.1.1 → mdrefcheck-0.1.3}/src/diagnostics.rs +0 -0
- {mdrefcheck-0.1.1 → mdrefcheck-0.1.3}/src/lib.rs +0 -0
- {mdrefcheck-0.1.1 → mdrefcheck-0.1.3}/src/main.rs +0 -0
- {mdrefcheck-0.1.1 → mdrefcheck-0.1.3}/src/parser.rs +0 -0
- {mdrefcheck-0.1.1 → mdrefcheck-0.1.3}/src/scanner.rs +0 -0
- {mdrefcheck-0.1.1 → mdrefcheck-0.1.3}/src/utils.rs +0 -0
|
@@ -151,6 +151,7 @@ jobs:
|
|
|
151
151
|
id-token: write
|
|
152
152
|
attestations: write
|
|
153
153
|
steps:
|
|
154
|
+
- uses: actions/checkout@v4
|
|
154
155
|
- uses: actions/download-artifact@v4
|
|
155
156
|
|
|
156
157
|
- name: Generate artifact attestation
|
|
@@ -177,5 +178,6 @@ jobs:
|
|
|
177
178
|
name: Release ${{ github.ref_name }}
|
|
178
179
|
tag_name: ${{ github.ref_name }}
|
|
179
180
|
body_path: CHANGELOG.md
|
|
181
|
+
files: wheels-*/*
|
|
180
182
|
env:
|
|
181
183
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
@@ -1,5 +1,21 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [0.1.3] - 2025-09-14
|
|
4
|
+
|
|
5
|
+
### CI
|
|
6
|
+
|
|
7
|
+
- Remove dist folder nesting on release
|
|
8
|
+
|
|
9
|
+
## [0.1.2] - 2025-09-14
|
|
10
|
+
|
|
11
|
+
### Documentation
|
|
12
|
+
|
|
13
|
+
- Adjust repo and home links to github
|
|
14
|
+
|
|
15
|
+
### CI
|
|
16
|
+
|
|
17
|
+
- Fix release steps
|
|
18
|
+
|
|
3
19
|
## [0.1.1] - 2025-09-14
|
|
4
20
|
|
|
5
21
|
### Documentation
|
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
[package]
|
|
2
2
|
name = "mdrefcheck"
|
|
3
|
-
version = "0.1.
|
|
3
|
+
version = "0.1.3"
|
|
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.3
|
|
4
4
|
Classifier: Development Status :: 4 - Beta
|
|
5
5
|
Classifier: Environment :: Console
|
|
6
6
|
Classifier: Intended Audience :: Developers
|
|
@@ -12,7 +12,7 @@ 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
|
|
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
|