From 8aaeafe5ac15829952984ea5ea046eacb877106c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Eustace?= Date: Mon, 15 Jul 2019 20:28:26 +0200 Subject: [PATCH] Bump version to 0.9.9 --- CHANGELOG.md | 9 +++++++-- orator/__init__.py | 2 +- pyproject.toml | 2 +- 3 files changed, 9 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 6cd08fb2..220ee067 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,10 +1,13 @@ # Change Log -## [Unreleased] +## [0.9.9] - 2019-07-15 ### Fixed - Fixed missing relationships when eager loading multiple nested relationships. +- Fixed a possible `AttributeError` when starting a transaction. +- Fixed an infinite recursion when using `where_exists()` on a soft-deletable model. +- Fixed some cases where a reconnection would not occur for PostgreSQL. ## [0.9.8] - 2018-10-10 @@ -433,7 +436,9 @@ Initial release -[Unreleased]: https://github.com/sdispater/orator/compare/0.9.7...0.9 +[Unreleased]: https://github.com/sdispater/orator/compare/0.9.9...0.9 +[0.9.9]: https://github.com/sdispater/orator/releases/0.9.9 +[0.9.8]: https://github.com/sdispater/orator/releases/0.9.8 [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 diff --git a/orator/__init__.py b/orator/__init__.py index 0cd41def..0316577d 100644 --- a/orator/__init__.py +++ b/orator/__init__.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- -__version__ = "0.9.8" +__version__ = "0.9.9" from .orm import Model, SoftDeletes, Collection, accessor, mutator, scope from .database_manager import DatabaseManager diff --git a/pyproject.toml b/pyproject.toml index b35cec6d..c067e646 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "orator" -version = "0.9.8" +version = "0.9.9" description = "The Orator ORM provides a simple yet beautiful ActiveRecord implementation." license = "MIT"