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

Commit

Permalink
Bump version to 0.9.8
Browse files Browse the repository at this point in the history
  • Loading branch information
sdispater committed Oct 10, 2018
1 parent c8eccb4 commit 0d745b4
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 2 deletions.
13 changes: 13 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,18 @@
# Change Log

## [0.9.8] - 2018-10-10

### Fixed

- Fixed the `morphed_by_many()` decorator.
- Fixed decoding errors for MySQL.
- Fixed connection errors check.
- Fixed the `touches()` method.
- Fixed `has_many` not showing `DISTINCT`.
- Fixed `save_many()` for Python 3.
- Fixed an error when listing columns for recent MySQL versions.


## [0.9.7] - 2017-05-17

### Fixed
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.7'
__version__ = "0.9.8"

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.8a0"
version = "0.9.8"
description = "The Orator ORM provides a simple yet beautiful ActiveRecord implementation."

license = "MIT"
Expand Down

0 comments on commit 0d745b4

Please sign in to comment.