diff --git a/.gitignore b/.gitignore index cf151ff..e486225 100644 --- a/.gitignore +++ b/.gitignore @@ -1,6 +1,7 @@ *.svg *.html .DS_Store +.pytest_cache *.mp4 *.gif tags diff --git a/CHANGELOG.md b/CHANGELOG.md index 6cd54c3..1cedf04 100644 --- a/CHANGELOG.md +++ b/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 diff --git a/bowtie/__init__.py b/bowtie/__init__.py index 1991242..dca83ce 100644 --- a/bowtie/__init__.py +++ b/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