Skip to content

Commit

Permalink
v0.7.0
Browse files Browse the repository at this point in the history
  • Loading branch information
jwkvam committed Feb 4, 2018
1 parent f29a41a commit c747c40
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
6 changes: 5 additions & 1 deletion 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

Expand Down
2 changes: 1 addition & 1 deletion 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
Expand Down

0 comments on commit c747c40

Please sign in to comment.