Skip to content

Commit

Permalink
fix: Fix package versioning
Browse files Browse the repository at this point in the history
  • Loading branch information
Ivan Héda committed Jun 3, 2024
1 parent 740144d commit 861b7e2
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 3 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"

[project]
name = "rossum_api"
version = "0.15.0"
version = "0.15.1"
license = {text = "MIT"}
readme = "README.md"
dependencies = [
Expand Down Expand Up @@ -51,3 +51,5 @@ ensure_newline_before_comments = true
[tool.semantic_release]
upload_to_repository = false
branch = "main"
version_variables = ["rossum_api/__init__.py:__version__"]
version_toml = ["pyproject.toml:project.version"]
2 changes: 2 additions & 0 deletions rossum_api/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@
from rossum_api.elis_api_client import ElisAPIClient, ExportFileFormats
from rossum_api.elis_api_client_sync import ElisAPIClientSync

__version__ = "0.15.1"

__all__ = (
"APIClientError",
"ElisAPIClient",
Expand Down

0 comments on commit 861b7e2

Please sign in to comment.