diff --git a/doc/content/changelog.rst b/doc/content/changelog.rst index a7558a68..bcad9cbd 100644 --- a/doc/content/changelog.rst +++ b/doc/content/changelog.rst @@ -6,6 +6,21 @@ is_template: False Changelog ========= +.. changelog-header:: 1.10.5.1 (2022-12-12) + +Bugfixes +~~~~~~~~ + +* Packaging + + * A ``ModuleNotFoundError``, that raised on some systems while installing + Lona, was fixed + + * Previously the package mechanism assumed that all dependencies are fully + installed, before Lona gets installed. This assumption seems to be + incorrect on some systems. + + .. changelog-header:: 1.10.5 (2022-12-05) Changes diff --git a/lona/__init__.py b/lona/__init__.py index 215498c3..30d887f0 100644 --- a/lona/__init__.py +++ b/lona/__init__.py @@ -10,5 +10,5 @@ if e.name != 'typing_extensions': raise -VERSION = (1, 10, 5) +VERSION = (1, 10, 5, 1) VERSION_STRING = '.'.join(str(i) for i in VERSION) diff --git a/setup.py b/setup.py index ca16e320..d2fa841f 100755 --- a/setup.py +++ b/setup.py @@ -6,7 +6,7 @@ setup( include_package_data=True, name='lona', - version='1.10.5', + version='1.10.5.1', author='Florian Scherf', url='https://github.com/lona-web-org/lona', author_email='mail@florianscherf.de',