pelican-markdown-it-reader 2.0.2__tar.gz → 2.0.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.
- {pelican_markdown_it_reader-2.0.2 → pelican_markdown_it_reader-2.0.3}/PKG-INFO +16 -1
- {pelican_markdown_it_reader-2.0.2 → pelican_markdown_it_reader-2.0.3}/README.md +14 -0
- {pelican_markdown_it_reader-2.0.2 → pelican_markdown_it_reader-2.0.3}/pyproject.toml +5 -1
- {pelican_markdown_it_reader-2.0.2 → pelican_markdown_it_reader-2.0.3}/pelican/plugins/markdown_it_reader/__init__.py +0 -0
- {pelican_markdown_it_reader-2.0.2 → pelican_markdown_it_reader-2.0.3}/pelican/plugins/markdown_it_reader/markdown_it_reader.py +0 -0
- {pelican_markdown_it_reader-2.0.2 → pelican_markdown_it_reader-2.0.3}/pelican/plugins/markdown_it_reader/test_markdown_it_reader.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: pelican-markdown-it-reader
|
|
3
|
-
Version: 2.0.
|
|
3
|
+
Version: 2.0.3
|
|
4
4
|
Summary: Reader plugin for Markdown-IT-py replacement
|
|
5
5
|
Home-page: https://github.com/gaige/markdown-it-reader
|
|
6
6
|
License: MIT
|
|
@@ -21,6 +21,7 @@ Classifier: Programming Language :: Python :: 3.9
|
|
|
21
21
|
Classifier: Programming Language :: Python :: 3.10
|
|
22
22
|
Classifier: Programming Language :: Python :: 3.11
|
|
23
23
|
Classifier: Programming Language :: Python :: 3.12
|
|
24
|
+
Classifier: Programming Language :: Python :: 3.13
|
|
24
25
|
Classifier: Topic :: Internet :: WWW/HTTP
|
|
25
26
|
Classifier: Topic :: Software Development :: Libraries :: Python Modules
|
|
26
27
|
Provides-Extra: markdown
|
|
@@ -85,6 +86,20 @@ To start contributing to this plugin, review the [Contributing to Pelican][] doc
|
|
|
85
86
|
[existing issues]: https://github.com/gaige/markdown-it-reader/issues
|
|
86
87
|
[Contributing to Pelican]: https://docs.getpelican.com/en/latest/contribute.html
|
|
87
88
|
|
|
89
|
+
|
|
90
|
+
Updating
|
|
91
|
+
--------
|
|
92
|
+
|
|
93
|
+
We use dependabot for updating dependencies, conventional commits for commit messages,
|
|
94
|
+
and github actions for release.
|
|
95
|
+
|
|
96
|
+
To generate a release:
|
|
97
|
+
|
|
98
|
+
1. `cz bump --dry-run [--increment patch]` to verify changes
|
|
99
|
+
2. `cz bump [--increment patch]` to finalize
|
|
100
|
+
3. `git push` to send code and `git push <tag>` to send the tag (or the less-safe `--tags`)
|
|
101
|
+
|
|
102
|
+
|
|
88
103
|
License
|
|
89
104
|
-------
|
|
90
105
|
|
|
@@ -49,6 +49,20 @@ To start contributing to this plugin, review the [Contributing to Pelican][] doc
|
|
|
49
49
|
[existing issues]: https://github.com/gaige/markdown-it-reader/issues
|
|
50
50
|
[Contributing to Pelican]: https://docs.getpelican.com/en/latest/contribute.html
|
|
51
51
|
|
|
52
|
+
|
|
53
|
+
Updating
|
|
54
|
+
--------
|
|
55
|
+
|
|
56
|
+
We use dependabot for updating dependencies, conventional commits for commit messages,
|
|
57
|
+
and github actions for release.
|
|
58
|
+
|
|
59
|
+
To generate a release:
|
|
60
|
+
|
|
61
|
+
1. `cz bump --dry-run [--increment patch]` to verify changes
|
|
62
|
+
2. `cz bump [--increment patch]` to finalize
|
|
63
|
+
3. `git push` to send code and `git push <tag>` to send the tag (or the less-safe `--tags`)
|
|
64
|
+
|
|
65
|
+
|
|
52
66
|
License
|
|
53
67
|
-------
|
|
54
68
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
[tool.poetry]
|
|
2
2
|
name = "pelican-markdown-it-reader"
|
|
3
|
-
version = "2.0.
|
|
3
|
+
version = "2.0.3"
|
|
4
4
|
description = "Reader plugin for Markdown-IT-py replacement"
|
|
5
5
|
authors = ["Gaige B. Paulsen <gaige@cluetrust.com>"]
|
|
6
6
|
license = "MIT"
|
|
@@ -60,6 +60,10 @@ append-github-contributor = true
|
|
|
60
60
|
[tool.commitizen]
|
|
61
61
|
version_provider = "poetry"
|
|
62
62
|
tag_format = "v$major.$minor.$patch$prerelease"
|
|
63
|
+
update_changelog_on_bump = true
|
|
64
|
+
|
|
65
|
+
[tool.commitizen.customize]
|
|
66
|
+
# changelog_pattern = "^(feature|bug fix|docs)?(!)?"
|
|
63
67
|
|
|
64
68
|
[tool.isort]
|
|
65
69
|
# Maintain compatibility with Black
|
|
File without changes
|
|
File without changes
|