Skip to content

Commit

Permalink
release 1.7
Browse files Browse the repository at this point in the history
Signed-off-by: Florian Scherf <[email protected]>
  • Loading branch information
fscherf committed Sep 16, 2021
1 parent c295a0c commit a8e385d
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 1 deletion.
25 changes: 25 additions & 0 deletions doc/content/changelog.rst
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,31 @@ search_index_weight: -10
Changelog
=========

.. changelog-header:: 1.7 (2021-09-16)


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

* html

* ``==`` now checks if node A ``is`` node B

* Previously ``==`` checked if node A had equal attributes as node B,
This caused problems with builtin methods like ``list.index``, which
resulted in rendering bugs


Bugfixes
~~~~~~~~

* html

* Parsing of input types was fixed
* ``Checkbox.value`` has always the type ``bool`` now
* Parsing of ``TextArea.value`` was fixed


.. changelog-header:: 1.6.1 (2021-09-08)

Bugfixes
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, 6, 1)
VERSION = (1, 7)
VERSION_STRING = '.'.join(str(i) for i in VERSION)

0 comments on commit a8e385d

Please sign in to comment.