mdrefcheck 0.1.3__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.3 → mdrefcheck-0.1.5}/.github/workflows/ci.yml +6 -5
- {mdrefcheck-0.1.3 → mdrefcheck-0.1.5}/CHANGELOG.md +12 -0
- {mdrefcheck-0.1.3 → mdrefcheck-0.1.5}/Cargo.lock +1 -1
- {mdrefcheck-0.1.3 → mdrefcheck-0.1.5}/Cargo.toml +1 -1
- {mdrefcheck-0.1.3 → mdrefcheck-0.1.5}/PKG-INFO +2 -2
- {mdrefcheck-0.1.3 → mdrefcheck-0.1.5}/pyproject.toml +2 -2
- {mdrefcheck-0.1.3 → mdrefcheck-0.1.5}/.gitignore +0 -0
- {mdrefcheck-0.1.3 → mdrefcheck-0.1.5}/LICENSE +0 -0
- {mdrefcheck-0.1.3 → mdrefcheck-0.1.5}/README.md +0 -0
- {mdrefcheck-0.1.3 → mdrefcheck-0.1.5}/release.toml +0 -0
- {mdrefcheck-0.1.3 → mdrefcheck-0.1.5}/rustfmt.toml +0 -0
- {mdrefcheck-0.1.3 → mdrefcheck-0.1.5}/src/checks/email.rs +0 -0
- {mdrefcheck-0.1.3 → mdrefcheck-0.1.5}/src/checks/image.rs +0 -0
- {mdrefcheck-0.1.3 → mdrefcheck-0.1.5}/src/checks/section.rs +0 -0
- {mdrefcheck-0.1.3 → mdrefcheck-0.1.5}/src/checks.rs +0 -0
- {mdrefcheck-0.1.3 → mdrefcheck-0.1.5}/src/config.rs +0 -0
- {mdrefcheck-0.1.3 → mdrefcheck-0.1.5}/src/diagnostics.rs +0 -0
- {mdrefcheck-0.1.3 → mdrefcheck-0.1.5}/src/lib.rs +0 -0
- {mdrefcheck-0.1.3 → mdrefcheck-0.1.5}/src/main.rs +0 -0
- {mdrefcheck-0.1.3 → mdrefcheck-0.1.5}/src/parser.rs +0 -0
- {mdrefcheck-0.1.3 → mdrefcheck-0.1.5}/src/scanner.rs +0 -0
- {mdrefcheck-0.1.3 → mdrefcheck-0.1.5}/src/utils.rs +0 -0
|
@@ -152,6 +152,12 @@ jobs:
|
|
|
152
152
|
attestations: write
|
|
153
153
|
steps:
|
|
154
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
|
+
|
|
155
161
|
- uses: actions/download-artifact@v4
|
|
156
162
|
|
|
157
163
|
- name: Generate artifact attestation
|
|
@@ -167,11 +173,6 @@ jobs:
|
|
|
167
173
|
command: upload
|
|
168
174
|
args: --non-interactive --skip-existing wheels-*/*
|
|
169
175
|
|
|
170
|
-
- name: Publish to crates.io
|
|
171
|
-
env:
|
|
172
|
-
CARGO_REGISTRY_TOKEN: ${{ secrets.CARGO_REGISTRY_TOKEN_PUBNEW }}
|
|
173
|
-
run: cargo publish --no-verify
|
|
174
|
-
|
|
175
176
|
- name: Create GitHub Release
|
|
176
177
|
uses: softprops/action-gh-release@v1
|
|
177
178
|
with:
|
|
@@ -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
|
|
@@ -17,7 +17,7 @@ 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"]
|
|
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
|