Skip to content

Commit

Permalink
fix: trigger release with changes to __init__.py
Browse files Browse the repository at this point in the history
  • Loading branch information
danellecline committed Aug 22, 2024
1 parent 6e8e543 commit e275d9c
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 8 deletions.
14 changes: 8 additions & 6 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,16 +19,18 @@ sdcat = "sdcat.__main__:cli"

[tool.semantic_release]
branch = "main"
commit_message = "{version}\n\nAutomatically generated by python-semantic-release"
upload_to_PyPI = false
upload_to_release = true
tag_format = "v{version}"
commit_version_number = true
version_variable = [
"sdcat/__init__.py:__version__"
]
version_toml = [
"pyproject.toml:tool.poetry.version"
]
allow_zero_version = true
commit_parser = "angular"
logging_use_named_masks = true
major_on_zero = true
assets = []
version_variables = ["sdcat/__init__.py:__version__"]
version_toml = ["pyproject.toml:tool.poetry.version"]
build_command = "pip install poetry && poetry build"

[tool.semantic_release.commit_parser_options]
Expand Down
4 changes: 2 additions & 2 deletions sdcat/__init__.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
#!/usr/bin/env python
__version__ = "1.8.0"
# sdcat/__init__.py
__version__ = "1.8.0"

0 comments on commit e275d9c

Please sign in to comment.