From 2e82570af066a32eb72aeea0b0824a257850818b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Eustace?= Date: Tue, 16 May 2017 14:45:36 -0500 Subject: [PATCH] Bumps version to 0.9.6 --- CHANGELOG.md | 22 +++++++++++++--------- orator/__init__.py | 2 +- poetry.toml | 2 +- 3 files changed, 15 insertions(+), 11 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 3a9212d8..39286864 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,19 +1,22 @@ # Change Log -## [Unreleased] +## [0.9.6] - 2017-05-16 + +### Added + +- Added support for `DATE` types in models. +- Added support for fractional seconds for the `TIMESTAMP` type in MySQL 5.6.4+. +- Added support for fractional seconds for the `TIMESTAMP` and `TIME` types in PostreSQL. ### Changed -- Improves implementation of the `chunk` method. -- Adds support for `DATE` types in models. -- Adds support for fractional seconds for the `TIMESTAMP` type in MySQL 5.6.4+. -- Adds support for fractional seconds for the `TIMESTAMP` and `TIME` types in PostreSQL. +- Improved implementation of the `chunk` method. ### Fixed -- Fixes timezone offset errors when inserting datetime aware objects into PostgreSQL. -- Fixes a bug occurring when using `__touches__` with an optional relationship. -- Fixes collections serialization when using the query builder +- Fixed timezone offset errors when inserting datetime aware objects into PostgreSQL. +- Fixed a bug occurring when using `__touches__` with an optional relationship. +- Fixed collections serialization when using the query builder ## [0.9.5] - 2017-02-11 @@ -403,7 +406,8 @@ Initial release -[Unreleased]: https://github.com/sdispater/orator/compare/0.9.5...0.9 +[Unreleased]: https://github.com/sdispater/orator/compare/0.9.6...0.9 +[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 [0.9.3]: https://github.com/sdispater/orator/releases/0.9.3 diff --git a/orator/__init__.py b/orator/__init__.py index 70c9c444..a69d6828 100644 --- a/orator/__init__.py +++ b/orator/__init__.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- -__version__ = '0.9.5' +__version__ = '0.9.6' from .orm import Model, SoftDeletes, Collection, accessor, mutator, scope from .database_manager import DatabaseManager diff --git a/poetry.toml b/poetry.toml index 6458b4ab..a9115cfe 100644 --- a/poetry.toml +++ b/poetry.toml @@ -1,6 +1,6 @@ [package] name = "orator" -version = "0.9.5" +version = "0.9.6" description = "The Orator ORM provides a simple yet beautiful ActiveRecord implementation." license = "MIT"