Skip to content

Commit

Permalink
fix: Update version in setup.py and package.json with semantic re…
Browse files Browse the repository at this point in the history
…lease
  • Loading branch information
annehaley committed Oct 10, 2024
1 parent f1b1b34 commit 7f6ce9d
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
3 changes: 3 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -23,3 +23,6 @@ quote-style = "single"
[tool.ruff.lint.isort]
force-sort-within-sections = true # Sort by name, don't cluster "from" vs "import"
combine-as-imports = true # Combines "as" imports on the same line

[tool.semantic_release]
version_variables = ["setup.py:__version__", "web/package.json:version"]
4 changes: 3 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@

from setuptools import find_packages, setup

__version__ = '0.4.1'

readme_file = Path(__file__).parent / 'README.md'
if readme_file.exists():
with readme_file.open() as f:
Expand All @@ -12,7 +14,7 @@

setup(
name='uvdat',
version='0.1.0',
version=__version__,
description='',
long_description=long_description,
long_description_content_type='text/markdown',
Expand Down

0 comments on commit 7f6ce9d

Please sign in to comment.