Skip to content

Commit

Permalink
Bump version to 0.9.9
Browse files Browse the repository at this point in the history
  • Loading branch information
sdispater committed Jul 15, 2019
1 parent cdd0aa8 commit 8aaeafe
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 4 deletions.
9 changes: 7 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion orator/__init__.py
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -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"
Expand Down

0 comments on commit 8aaeafe

Please sign in to comment.