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

Commit

Permalink
Bumps version to 0.9.6
Browse files Browse the repository at this point in the history
  • Loading branch information
sdispater committed May 16, 2017
1 parent 671f242 commit 2e82570
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 11 deletions.
22 changes: 13 additions & 9 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down Expand Up @@ -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
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.5'
__version__ = '0.9.6'

from .orm import Model, SoftDeletes, Collection, accessor, mutator, scope
from .database_manager import DatabaseManager
Expand Down
2 changes: 1 addition & 1 deletion poetry.toml
Original file line number Diff line number Diff line change
@@ -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"
Expand Down

0 comments on commit 2e82570

Please sign in to comment.