chore: Update version to 0.5.0 in project files and enhance version update script
This commit is contained in:
parent
aa7db1a3ab
commit
5dfb96874e
3 changed files with 12 additions and 8 deletions
|
|
@ -1,6 +1,6 @@
|
||||||
"""Elytra PIM Client - A Pythonic client for the Elytra PIM API"""
|
"""Elytra PIM Client - A Pythonic client for the Elytra PIM API"""
|
||||||
|
|
||||||
__version__ = "0.3.0"
|
__version__ = "0.5.0"
|
||||||
__author__ = "Your Name"
|
__author__ = "Your Name"
|
||||||
|
|
||||||
from . import rest_api
|
from . import rest_api
|
||||||
|
|
|
||||||
|
|
@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
|
||||||
|
|
||||||
[project]
|
[project]
|
||||||
name = "elytra-pim-client"
|
name = "elytra-pim-client"
|
||||||
version = "0.3.0"
|
version = "0.5.0"
|
||||||
description = "A Pythonic client for the Elytra PIM API"
|
description = "A Pythonic client for the Elytra PIM API"
|
||||||
readme = "README.md"
|
readme = "README.md"
|
||||||
requires-python = ">=3.9"
|
requires-python = ">=3.9"
|
||||||
|
|
@ -44,8 +44,8 @@ Repository = "https://git.him-tools.de/HIM-public/elytra_client.git"
|
||||||
Documentation = "https://www.elytra.ch/"
|
Documentation = "https://www.elytra.ch/"
|
||||||
Issues = "https://git.him-tools.de/HIM-public/elytra_client/issues"
|
Issues = "https://git.him-tools.de/HIM-public/elytra_client/issues"
|
||||||
|
|
||||||
[tool.setuptools]
|
[tool.setuptools.packages.find]
|
||||||
packages = ["elytra_client"]
|
include = ["elytra_client*"]
|
||||||
|
|
||||||
[tool.black]
|
[tool.black]
|
||||||
line-length = 100
|
line-length = 100
|
||||||
|
|
|
||||||
|
|
@ -31,20 +31,22 @@ def validate_version(version: str) -> bool:
|
||||||
return bool(re.match(pattern, version))
|
return bool(re.match(pattern, version))
|
||||||
|
|
||||||
|
|
||||||
def update_file(file_path: Path, old_pattern: str, new_version: str) -> bool:
|
def update_file(file_path: Path, old_pattern: str, new_version: str, multiline: bool = False) -> bool:
|
||||||
"""Update version in a file.
|
"""Update version in a file.
|
||||||
|
|
||||||
Args:
|
Args:
|
||||||
file_path: Path to file to update
|
file_path: Path to file to update
|
||||||
old_pattern: Regex pattern to find version
|
old_pattern: Regex pattern to find version
|
||||||
new_version: New version string
|
new_version: New version string
|
||||||
|
multiline: Whether to use multiline mode for regex
|
||||||
|
|
||||||
Returns:
|
Returns:
|
||||||
True if successful, False otherwise
|
True if successful, False otherwise
|
||||||
"""
|
"""
|
||||||
try:
|
try:
|
||||||
content = file_path.read_text()
|
content = file_path.read_text()
|
||||||
updated_content = re.sub(old_pattern, new_version, content)
|
flags = re.MULTILINE if multiline else 0
|
||||||
|
updated_content = re.sub(old_pattern, new_version, content, flags=flags)
|
||||||
|
|
||||||
if content == updated_content:
|
if content == updated_content:
|
||||||
print(f"✓ {file_path.name} already up-to-date")
|
print(f"✓ {file_path.name} already up-to-date")
|
||||||
|
|
@ -89,11 +91,13 @@ def main() -> int:
|
||||||
|
|
||||||
# Update pyproject.toml
|
# Update pyproject.toml
|
||||||
if pyproject_path.exists():
|
if pyproject_path.exists():
|
||||||
pattern = r'version = "[^"]+"'
|
# Use word boundary to match 'version' but not 'python_version'
|
||||||
|
pattern = r'^version = "[^"]+"'
|
||||||
success &= update_file(
|
success &= update_file(
|
||||||
pyproject_path,
|
pyproject_path,
|
||||||
pattern,
|
pattern,
|
||||||
f'version = "{new_version}"'
|
f'version = "{new_version}"',
|
||||||
|
multiline=True
|
||||||
)
|
)
|
||||||
else:
|
else:
|
||||||
print(f"✗ {pyproject_path} not found")
|
print(f"✗ {pyproject_path} not found")
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue