diff --git a/CHANGELOG.md b/CHANGELOG.md index 7a285c6..ef2c01c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,14 +1,18 @@ # CHANGELOG -## 0.7.0 / ??? +## 0.7.0 / 2018-02-03 ### Added * Implemented `__getitem__` for the layout enabling for example: `app[1, 0:2] = widget`. + * Added "on_relayout" event for Plotly widgets. + * Serialize Pandas series objects and Pandas datetime objects. ### Breaking * `row_end` and `column_end` are now exclusive instead of inclusive. + * Simplified the `add` function in favor of the new getitem functionality, + which is easier to use and familiar to Python programmers. ## 0.6.1 / 2018-02-01 diff --git a/bowtie/__init__.py b/bowtie/__init__.py index 33cb685..74d6ef8 100644 --- a/bowtie/__init__.py +++ b/bowtie/__init__.py @@ -1,6 +1,6 @@ """Interactive dashboard toolkit.""" -__version__ = '0.7.0-dev' +__version__ = '0.7.0' from bowtie._app import App, View from bowtie._command import command