diff --git a/CHANGELOG.md b/CHANGELOG.md index 308d049f..83eca21e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,15 @@ # Change Log +## [0.9.4] - 2017-01-12 + +### Fixed + +- Fixes `BelongsTo.associate()` for non saved models. +- Fixes reconnection for PostgreSQL. +- Fixes dependencies (changed `fake-factory` to `Faker`) (thanks to [acristoffers](https://github.com/acristoffers)) + + ## [0.9.3] - 2016-11-10 ### Fixed @@ -369,6 +378,7 @@ Initial release +[0.9.4]: https://github.com/sdispater/orator/releases/0.9.4 [0.9.3]: https://github.com/sdispater/orator/releases/0.9.3 [0.9.2]: https://github.com/sdispater/orator/releases/0.9.2 [0.9.1]: https://github.com/sdispater/orator/releases/0.9.1 diff --git a/orator/version.py b/orator/version.py index d5562d79..6eb74382 100644 --- a/orator/version.py +++ b/orator/version.py @@ -1,3 +1,3 @@ # -*- coding: utf-8 -*- -VERSION = '0.9.3' +VERSION = '0.9.4'