From 8df40b5386fecbc4a215036df4c3002793fec561 Mon Sep 17 00:00:00 2001 From: Chris Modzelewski Date: Tue, 27 Nov 2018 19:29:32 -0500 Subject: [PATCH] Incremented version numbers and updated release history to reflect changes for v.0.3.1. --- CHANGES.rst | 30 ++++++++++++++++++++++++++++++ README.rst | 8 ++++---- docs/_unit_tests_code_coverage.rst | 10 +++++----- sqlathanor/__version__.py | 2 +- 4 files changed, 40 insertions(+), 10 deletions(-) diff --git a/CHANGES.rst b/CHANGES.rst index 03b177c..6289725 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -1,5 +1,35 @@ ----------- +Release 0.3.1 +========================================= + +.. image:: https://travis-ci.org/insightindustry/sqlathanor.svg?branch=v.0.3.1 + :target: https://travis-ci.org/insightindustry/sqlathanor + :alt: Build Status (Travis CI) + +.. image:: https://codecov.io/gh/insightindustry/sqlathanor/branch/v.0.3.1/graph/badge.svg + :target: https://codecov.io/gh/insightindustry/sqlathanor + :alt: Code Coverage Status (Codecov) + +.. image:: https://readthedocs.org/projects/sqlathanor/badge/?version=v.0.3.1 + :target: http://sqlathanor.readthedocs.io/en/latest/?badge=v.0.3.1 + :alt: Documentation Status (ReadTheDocs) + +Bug Fixes +----------------- + +* #58: Fixed problem where ``None`` values are mistakenly serialized to empty lists. +* #57: Fixed problem where ``on_serialize`` functions were ignored for relationships. +* #56: Fixed problem where relationships were not properly deserialized. + +Other Changes +------------------ + +* #26: Added Python 3.7 to test matrix. +* Removed some unnecessary print statements. + +----------- + Release 0.3.0 ========================================= diff --git a/README.rst b/README.rst index 02f83fc..437ba60 100644 --- a/README.rst +++ b/README.rst @@ -29,17 +29,17 @@ SQLAthanor :target: http://sqlathanor.readthedocs.io/en/latest/?badge=latest :alt: Documentation Status (ReadTheDocs) - * - `v.0.3 `_ + * - `v.0.3 `_ - - .. image:: https://travis-ci.org/insightindustry/sqlathanor.svg?branch=v.0.3.0 + .. image:: https://travis-ci.org/insightindustry/sqlathanor.svg?branch=v.0.3.1 :target: https://travis-ci.org/insightindustry/sqlathanor :alt: Build Status (Travis CI) - .. image:: https://codecov.io/gh/insightindustry/sqlathanor/branch/v.0.3.0/graph/badge.svg + .. image:: https://codecov.io/gh/insightindustry/sqlathanor/branch/v.0.3.1/graph/badge.svg :target: https://codecov.io/gh/insightindustry/sqlathanor :alt: Code Coverage Status (Codecov) - .. image:: https://readthedocs.org/projects/sqlathanor/badge/?version=v.0.3.0 + .. image:: https://readthedocs.org/projects/sqlathanor/badge/?version=v.0.3.1 :target: http://sqlathanor.readthedocs.io/en/latest/?badge=v.0.3.0 :alt: Documentation Status (ReadTheDocs) diff --git a/docs/_unit_tests_code_coverage.rst b/docs/_unit_tests_code_coverage.rst index 3000d8f..041486b 100644 --- a/docs/_unit_tests_code_coverage.rst +++ b/docs/_unit_tests_code_coverage.rst @@ -18,18 +18,18 @@ :target: http://sqlathanor.readthedocs.io/en/latest/?badge=latest :alt: Documentation Status (ReadTheDocs) - * - `v.0.3 `_ + * - `v.0.3 `_ - - .. image:: https://travis-ci.org/insightindustry/sqlathanor.svg?branch=v.0.3.0 + .. image:: https://travis-ci.org/insightindustry/sqlathanor.svg?branch=v.0.3.1 :target: https://travis-ci.org/insightindustry/sqlathanor :alt: Build Status (Travis CI) - .. image:: https://codecov.io/gh/insightindustry/sqlathanor/branch/v.0.3.0/graph/badge.svg + .. image:: https://codecov.io/gh/insightindustry/sqlathanor/branch/v.0.3.1/graph/badge.svg :target: https://codecov.io/gh/insightindustry/sqlathanor :alt: Code Coverage Status (Codecov) - .. image:: https://readthedocs.org/projects/sqlathanor/badge/?version=v.0.3.0 - :target: http://sqlathanor.readthedocs.io/en/latest/?badge=v.0.3.0 + .. image:: https://readthedocs.org/projects/sqlathanor/badge/?version=v.0.3.1 + :target: http://sqlathanor.readthedocs.io/en/latest/?badge=v.0.3.1 :alt: Documentation Status (ReadTheDocs) * - `v.0.2 `_ diff --git a/sqlathanor/__version__.py b/sqlathanor/__version__.py index a750fdc..e7a5ebf 100644 --- a/sqlathanor/__version__.py +++ b/sqlathanor/__version__.py @@ -1,2 +1,2 @@ # -*- coding: utf-8 -*- -__version__ = '0.3.0' +__version__ = '0.3.1'