Skip to content

Commit e0110fa

Browse files
committed
πŸ”– Bump version to 1.2.3
- Test PyPI publishing with API Token authentication - Ensure all version references are updated consistently
1 parent 6bfe3ae commit e0110fa

File tree

5 files changed

+9
-9
lines changed

5 files changed

+9
-9
lines changed

β€Ž.github/workflows/ci.ymlβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ jobs:
6868
ls -la tests/ || echo "No tests directory"
6969
echo "Python path:"
7070
python -c "import sys; print(sys.path)"
71-
71+
7272
- name: Test with pytest
7373
run: |
7474
python -m pytest --cov=pyhetznerserver --cov-report=xml --cov-report=term-missing --verbose

β€Žpyhetznerserver/__init__.pyβ€Ž

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@
3636
)
3737
from .models.server import Server
3838

39-
__version__ = "1.2.2"
39+
__version__ = "1.2.3"
4040
__author__ = "Mohammad Rasol Esfandiari"
4141
__email__ = "[email protected]"
4242
__license__ = "MIT"
@@ -47,7 +47,7 @@
4747
"HetznerClient",
4848
# Exceptions
4949
"HetznerAPIError",
50-
"AuthenticationError",
50+
"AuthenticationError",
5151
"ValidationError",
5252
"ServerNotFoundError",
5353
"RateLimitError",
@@ -59,11 +59,11 @@
5959
"ServerType",
6060
"Datacenter",
6161
"Location",
62-
"Image",
62+
"Image",
6363
"ISO",
6464
"Protection",
6565
"PublicNet",
6666
"PrivateNet",
6767
"IPv4",
6868
"IPv6",
69-
]
69+
]

β€Žpyproject.tomlβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
44

55
[project]
66
name = "pyhetznerserver"
7-
version = "1.2.2"
7+
version = "1.2.3"
88
description = "A modern, type-safe Python library for Hetzner Cloud Server management"
99
readme = "README.md"
1010
license = {text = "MIT"}

β€Žrequirements.txtβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
requests>=2.28.0
1+
requests>=2.28.0

β€Žsetup.pyβ€Ž

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020

2121
setup(
2222
name="pyhetznerserver",
23-
version="1.2.2",
23+
version="1.2.3",
2424
author="Mohammad Rasol Esfandiari",
2525
author_email="[email protected]",
2626
description="A modern, type-safe Python library for Hetzner Cloud Server management",
@@ -80,4 +80,4 @@
8080
],
8181
license="MIT",
8282
zip_safe=False,
83-
)
83+
)

0 commit comments

Comments
Β (0)