From 0d745b44023614cdc72405d0de611559af7c4f80 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Eustace?= Date: Wed, 10 Oct 2018 16:03:56 -0500 Subject: [PATCH] Bump version to 0.9.8 --- CHANGELOG.md | 13 +++++++++++++ orator/__init__.py | 2 +- pyproject.toml | 2 +- 3 files changed, 15 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 65286507..fc962c43 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 diff --git a/orator/__init__.py b/orator/__init__.py index c03d3707..0cd41def 100644 --- a/orator/__init__.py +++ b/orator/__init__.py @@ -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 diff --git a/pyproject.toml b/pyproject.toml index 5154811e..c8592432 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -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"