Skip to content

Commit

Permalink
v1.1.2
Browse files Browse the repository at this point in the history
  • Loading branch information
ken-morel committed Jun 2, 2024
1 parent 0f02d6e commit 652dc05
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 6 deletions.
2 changes: 1 addition & 1 deletion src/pyoload/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -626,5 +626,5 @@ def new_setter(self: Any, name: str, value: Any) -> Any:
return cls


__version__ = '1.1.1'
__version__ = '1.1.2'
__author__ = 'ken-morel'
6 changes: 4 additions & 2 deletions src/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -75,8 +75,8 @@

# 'Development Status :: 1 - Planning',
# 'Development Status :: 2 - Pre-Alpha',
# 'Development Status :: 3 - Alpha',
'Development Status :: 4 - Beta',
'Development Status :: 3 - Alpha',
# 'Development Status :: 4 - Beta',
# 'Development Status :: 5 - Production/Stable',
# 'Development Status :: 6 - Mature',
# 'Development Status :: 7 - Inactive',
Expand All @@ -91,6 +91,8 @@
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',

'Natural Language :: English',

'Topic :: Software Development :: Libraries :: Python Modules',
],
)
2 changes: 1 addition & 1 deletion src/tests/OverloadTest.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
from pyoload import get_name
from pyoload import overload

assert pyoload.__version__ == '1.1.1'
assert pyoload.__version__ == '1.1.2'


@overload
Expand Down
2 changes: 1 addition & 1 deletion src/tests/test_check.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
from pyoload import Checks
from pyoload import annotate

assert pyoload.__version__ == '1.1.1'
assert pyoload.__version__ == '1.1.2'


@annotate
Expand Down
2 changes: 1 addition & 1 deletion src/tests/test_overload.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
from pyoload import get_name
from pyoload import overload

assert pyoload.__version__ == '1.1.1'
assert pyoload.__version__ == '1.1.2'


@overload
Expand Down

0 comments on commit 652dc05

Please sign in to comment.