Skip to content

Commit e6d48c6

Browse files
committed
chore: fix config version
1 parent d79880d commit e6d48c6

File tree

1 file changed

+5
-11
lines changed

1 file changed

+5
-11
lines changed

pyproject.toml

Lines changed: 5 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ name = "authcaptureproxy"
2626
# E.g. This might be "1.2.13", and the Github release will be "v1.2.13".
2727
# Although semantic versioning allows for build tags (metadata),
2828
# not all tools are compatible with it, so avoid it if you can.
29-
version = "1.3.3"
29+
version = "1.3.6"
3030

3131
description = "A Python project to create a proxy to capture authentication information from a webpage. This is useful to capture oauth login details without access to a third-party oauth."
3232
keywords = [""]
@@ -128,7 +128,7 @@ mypy = ">=0.790, <1.0"
128128
# that Tyrannosaurus set up for your project
129129
hypothesis = "^6"
130130
xdoctest = ">=0.15, <1.0"
131-
python-semantic-release = "^7"
131+
python-semantic-release = "^9"
132132
coveralls = "^3"
133133
pytest-asyncio = ">=0.14.0, <1"
134134
tox-gh-actions = ">=2.4.0, <3"
@@ -324,18 +324,12 @@ name = "cz_conventional_commits"
324324
filename = "NEWS.md"
325325

326326
[tool.semantic_release]
327-
version_pattern = [
328-
'codemeta.json:"version": "{version}"',
329-
'CITATION.cff:^version: {version}',
330-
'Dockerfile:LABEL version="{version}"',
331-
'Dockerfile:LABEL org.opencontainers.image.version="{version}"',
332-
]
333-
version_variable = "pyproject.toml:version"
327+
version_toml = ["pyproject.toml:tool.poetry.version"]
328+
major_on_zero = true
329+
branch = "main"
334330
upload_to_pypi = true
335331
upload_to_release = true
336-
changelog_sections = "feature,fix,breaking,documentation,performance,refactor"
337332
build_command = "pip install poetry && poetry build"
338-
branch = "main"
339333

340334
#########################################################################################
341335
# Style checking

0 commit comments

Comments
 (0)