Skip to content
This repository has been archived by the owner on Jan 6, 2022. It is now read-only.

Commit

Permalink
Version 1.3.4.
Browse files Browse the repository at this point in the history
  • Loading branch information
BertrandBordage committed Aug 21, 2019
1 parent 5ca2a72 commit 8388775
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 1 deletion.
8 changes: 8 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
What’s new in wagtail-react-streamfield?
========================================

1.3.4
-----

Fixes the broken JavaScript from TableBlock

1.3.3
-----

Expand Down Expand Up @@ -35,6 +40,9 @@ Fixes another issue with radio buttons (the serialization was not right)
- Fixes callable default values
- Fixes the dynamic title of the children of a ``ListBlock``
- Fixes minor CSS details
- Renamed ``Block.get_definition()`` to a ``Block.definition`` cached property
(overriding it with a simple ``@property`` works, but it will be faster
with ``@cached_property`` from ``django.utils.functional``)


1.2.0
Expand Down
2 changes: 1 addition & 1 deletion wagtail_react_streamfield/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
VERSION = (1, 3, 3)
VERSION = (1, 3, 4)
__version__ = '.'.join(map(str, VERSION))

default_app_config = 'wagtail_react_streamfield.apps.WagtailReactStreamFieldConfig'

0 comments on commit 8388775

Please sign in to comment.