Skip to content

Commit

Permalink
Init v0.0.6
Browse files Browse the repository at this point in the history
  • Loading branch information
Zhaopudark committed Jan 16, 2024
1 parent a51fe3f commit 5d6ecd9
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 6 deletions.
7 changes: 3 additions & 4 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,9 @@ jobs:
run: . ./helper/build.ps1
- name: Publish package (prerelease)
if: ${{ github.event.release.prerelease }}
uses: pypa/gh-action-pypi-publish@release/v1
with:
password: ${{ secrets.TEST_PYPI_API_TOKEN }}
repository-url: https://test.pypi.org/legacy/
run: |
pip install -U twine
twine upload dist/* -u __token__ -p ${{ secrets.TEST_PYPI_API_TOKEN }} -r testpypi
- name: Publish package (release)
if: ${{ !github.event.release.prerelease }}
uses: pypa/gh-action-pypi-publish@release/v1
Expand Down
3 changes: 3 additions & 0 deletions RELEASE.md
Original file line number Diff line number Diff line change
@@ -1,2 +1,5 @@
# Version 0.0.6
Version 0.0.6

# Version 0.0.5
The basic release of the project.
7 changes: 5 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ authors = [
]
description = "A customized pandoc filters set that can be used to generate a useful pandoc python filter."
readme = "README.md"
version = "0.0.5"
version = "0.0.6"
requires-python = ">=3.12"
dependencies = [
"requests",
Expand All @@ -28,4 +28,7 @@ dependencies = [
where = ["src"] # ["."] by default
include = ["pandoc_filter*"] # ["*"] by default 都是相对于where的路径的pattern
exclude = ["__pycache__"] # empty by default 都是相对于where的路径的pattern
# namespaces = false # true by default 禁用命名空间包会组织识别到不带有__init__.py的包
# namespaces = false # true by default 禁用命名空间包会组织识别到不带有__init__.py的包
[project.urls]
Homepage = "https://github.com/Zhaopudark/pandoc-filter"
Issues = "https://github.com/Zhaopudark/pandoc-filter/issues"

0 comments on commit 5d6ecd9

Please sign in to comment.