Skip to content
This repository was archived by the owner on May 14, 2024. It is now read-only.

Commit 8aaeafe

Browse files
committed
Bump version to 0.9.9
1 parent cdd0aa8 commit 8aaeafe

File tree

3 files changed

+9
-4
lines changed

3 files changed

+9
-4
lines changed

CHANGELOG.md

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,13 @@
11
# Change Log
22

3-
## [Unreleased]
3+
## [0.9.9] - 2019-07-15
44

55
### Fixed
66

77
- Fixed missing relationships when eager loading multiple nested relationships.
8+
- Fixed a possible `AttributeError` when starting a transaction.
9+
- Fixed an infinite recursion when using `where_exists()` on a soft-deletable model.
10+
- Fixed some cases where a reconnection would not occur for PostgreSQL.
811

912

1013
## [0.9.8] - 2018-10-10
@@ -433,7 +436,9 @@
433436
Initial release
434437

435438

436-
[Unreleased]: https://github.com/sdispater/orator/compare/0.9.7...0.9
439+
[Unreleased]: https://github.com/sdispater/orator/compare/0.9.9...0.9
440+
[0.9.9]: https://github.com/sdispater/orator/releases/0.9.9
441+
[0.9.8]: https://github.com/sdispater/orator/releases/0.9.8
437442
[0.9.7]: https://github.com/sdispater/orator/releases/0.9.7
438443
[0.9.6]: https://github.com/sdispater/orator/releases/0.9.6
439444
[0.9.5]: https://github.com/sdispater/orator/releases/0.9.5

orator/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# -*- coding: utf-8 -*-
22

3-
__version__ = "0.9.8"
3+
__version__ = "0.9.9"
44

55
from .orm import Model, SoftDeletes, Collection, accessor, mutator, scope
66
from .database_manager import DatabaseManager

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "orator"
3-
version = "0.9.8"
3+
version = "0.9.9"
44
description = "The Orator ORM provides a simple yet beautiful ActiveRecord implementation."
55

66
license = "MIT"

0 commit comments

Comments
 (0)