diff --git a/CHANGELOG.md b/CHANGELOG.md index d0b6458..8ee8338 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,14 @@ ## Unreleased + + +## 0.6.0b1 (2019-05-01) + +### Notes +This revision contains some breaking API changes. + +### Changes + `create_db` was moved out of `app_factory.py` and into `orm.py`. (#115) + All files created during tests are now made in the `/tmp` directory. (#44) + Migrations are now performed automatically when the flask app is created diff --git a/src/trendlines/__about__.py b/src/trendlines/__about__.py index ec00c9d..07af040 100644 --- a/src/trendlines/__about__.py +++ b/src/trendlines/__about__.py @@ -4,8 +4,8 @@ __license__ = "GNU General Public License v3 (GPLv3)" __created__ = "2018-12-19" -__version__ = "0.5.0" -__released__ = "2019-02-28" +__version__ = "0.6.0b1" +__released__ = "2019-05-01" __project_name__ = "Trendlines" __package_name__ = "trendlines"