Skip to content

Commit

Permalink
release 1.10.5.1
Browse files Browse the repository at this point in the history
Signed-off-by: Florian Scherf <[email protected]>
  • Loading branch information
fscherf committed Dec 12, 2022
1 parent e5dcc2a commit 476ee8d
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 2 deletions.
15 changes: 15 additions & 0 deletions doc/content/changelog.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion lona/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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='[email protected]',
Expand Down

0 comments on commit 476ee8d

Please sign in to comment.