Skip to content

Commit

Permalink
release 1.10.1
Browse files Browse the repository at this point in the history
Signed-off-by: Florian Scherf <[email protected]>
  • Loading branch information
fscherf committed Apr 3, 2022
1 parent 22d4521 commit b479744
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 1 deletion.
11 changes: 11 additions & 0 deletions doc/content/changelog.rst
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,17 @@ is_template: False
Changelog
=========

.. changelog-header:: 1.10.1 (2022-04-03)


Changes
~~~~~~~

* Server State

* Server State can pre set using ``settings.INITIAL_SERVER_STATE`` now


.. changelog-header:: 1.10 (2022-03-21)


Expand Down
4 changes: 4 additions & 0 deletions doc/content/end-user-documentation/settings.rst
Original file line number Diff line number Diff line change
Expand Up @@ -174,6 +174,10 @@ Views
:name: INITIAL_SERVER_STATE
:path: lona.default_settings.INITIAL_SERVER_STATE

.. note::

Added in 1.10.1

This dict, if present, is copied to ``server.state``.
This is a convenient way to define or load server state on startup without
the need to write a specific middleware.
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)
VERSION = (1, 10, 1)
VERSION_STRING = '.'.join(str(i) for i in VERSION)

0 comments on commit b479744

Please sign in to comment.