Skip to content

Commit

Permalink
release 1.2
Browse files Browse the repository at this point in the history
Signed-off-by: Florian Scherf <[email protected]>
  • Loading branch information
fscherf committed Aug 19, 2021
1 parent a433f7e commit bd9ca77
Show file tree
Hide file tree
Showing 2 changed files with 36 additions and 1 deletion.
35 changes: 35 additions & 0 deletions doc/content/end-user-documentation/changelog.rst
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,41 @@ toctree: False
Changelog
=========

`1.2 <https://github.com/lona-web-org/lona/releases/tag/1.2>`_ (2021-08-19)
---------------------------------------------------------------------------

Breaking Changes
~~~~~~~~~~~~~~~~

* contrib: contrib.django was moved to `github.com/lona-web-org/lona-django <https://github.com/lona-web-org/lona-django>`_
* contrib: contrib.chartjs was moved to `github.com/lona-web-org/lona-chartjs <https://github.com/lona-web-org/lona-chartjs>`_
* contrib: contrib.bootstrap3 was removed

Changes
~~~~~~~

* frontend: the default frontend was split up in multiple templates, JS and CSS
files to make it more configurable
* shell: the commands ``%lona_static_files``, ``%lona_templates`` and
``%lona_middlewares`` were added

Bugfixes
~~~~~~~~

* scripts: static file loading issues were fixed

* previously ``app.add_static_file()`` and ``app.add_template()`` couldn't
override default static files and templates

* shell: ``%lona_views``: python stack analysis when running from a Lona script
was fixed

* shell: ``%lona_views``: fix error message when using ``--memory``

* previously ``%lona_views`` would always return "invalid runtime id" when
``--memory`` is set.


`1.1.1 <https://github.com/lona-web-org/lona/releases/tag/1.1.1>`_ (2021-08-15)
-------------------------------------------------------------------------------

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 @@

pass

VERSION = (1, 1, 1)
VERSION = (1, 2)
VERSION_STRING = '{}'.format('.'.join([str(i) for i in VERSION]))

0 comments on commit bd9ca77

Please sign in to comment.