Skip to content

Commit

Permalink
v0.6.0 (#189)
Browse files Browse the repository at this point in the history
v0.6.0
  • Loading branch information
jwkvam committed Feb 1, 2018
1 parent 8565b3b commit 6632641
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 1 deletion.
1 change: 1 addition & 0 deletions .gitignore
@@ -1,6 +1,7 @@
*.svg
*.html
.DS_Store
.pytest_cache
*.mp4
*.gif
tags
Expand Down
16 changes: 16 additions & 0 deletions CHANGELOG.md
@@ -1,5 +1,21 @@
# CHANGELOG

## 0.6.0 / 2018-01-31

### Added

* Removed node and webpack dependencies, the only dependency is yarn.
* Added a run command that simply combines build and serve together.
* Smarter build process that saves time on subsequent builds.
* Handle scheduled tasks when running with debug=True (#185)
* Improve the Docker experience and docs.
* Always use the latest compiled bundle.

### Breaking

* Instead of building the app by running `app.build()` you simply return the App instance.
See the quick start guide for an example.

## 0.5.1 / 2017-12-31

### Added
Expand Down
2 changes: 1 addition & 1 deletion bowtie/__init__.py
@@ -1,6 +1,6 @@
"""Interactive dashboard toolkit."""

__version__ = '0.6.0-dev'
__version__ = '0.6.0'

from bowtie._app import App, View
from bowtie._command import command
Expand Down

0 comments on commit 6632641

Please sign in to comment.