diff --git a/CHANGELOG.md b/CHANGELOG.md index 39286864..65286507 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ # Change Log +## [0.9.7] - 2017-05-17 + +### Fixed + +- Fixed `orator` command no longer working + + ## [0.9.6] - 2017-05-16 ### Added @@ -406,7 +413,8 @@ Initial release -[Unreleased]: https://github.com/sdispater/orator/compare/0.9.6...0.9 +[Unreleased]: https://github.com/sdispater/orator/compare/0.9.7...0.9 +[0.9.7]: https://github.com/sdispater/orator/releases/0.9.7 [0.9.6]: https://github.com/sdispater/orator/releases/0.9.6 [0.9.5]: https://github.com/sdispater/orator/releases/0.9.5 [0.9.4]: https://github.com/sdispater/orator/releases/0.9.4 diff --git a/orator/__init__.py b/orator/__init__.py index a69d6828..c03d3707 100644 --- a/orator/__init__.py +++ b/orator/__init__.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- -__version__ = '0.9.6' +__version__ = '0.9.7' from .orm import Model, SoftDeletes, Collection, accessor, mutator, scope from .database_manager import DatabaseManager diff --git a/poetry.toml b/poetry.toml index a9115cfe..47f6cee9 100644 --- a/poetry.toml +++ b/poetry.toml @@ -1,6 +1,6 @@ [package] name = "orator" -version = "0.9.6" +version = "0.9.7" description = "The Orator ORM provides a simple yet beautiful ActiveRecord implementation." license = "MIT"