From 581e8c2d3f1fedaf4c825ae8df12087744624e71 Mon Sep 17 00:00:00 2001 From: opacam Date: Wed, 31 Oct 2018 13:04:16 +0100 Subject: [PATCH] Bump version 0.8.3 --- CHANGELOG.rst | 20 ++++++++++++++++++++ coherence/__init__.py | 2 +- 2 files changed, 21 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 7245953e..3d2f5194 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -1,3 +1,23 @@ +0.8.3 - Introduces Backend's models +----------------------------------- + +General: + - Refactor some backends using the new module backends.models + - Introduces new module: backends.models + - Add backends status to README + - Better and cleaner documentation + - Python 3's f-Strings for backends modules + - Upgraded dependency for requests package (fix vulnerability) + - Split into several files the sphinx's documentation + - Migrate reports from coverage to codecov + +Fixes: + - Fix backend IRadioStore (ShoutCast Radio) + - Fix backend TEDStore + - Fix backend LolcatsStore + - Fix backend AppleTrailersStore + - Fix the parsing of the soap messages with encoding declared + 0.8.2 - Fixes and enhancements ------------------------------ diff --git a/coherence/__init__.py b/coherence/__init__.py index 3b256f21..0f7dfc84 100644 --- a/coherence/__init__.py +++ b/coherence/__init__.py @@ -1,6 +1,6 @@ import platform -__version_info__ = (0, 8, 2) +__version_info__ = (0, 8, 3) __version__ = '.'.join(map(str, __version_info__)) __url__ = 'https://github.com/opacam/Cohen3' __service_name__ = 'Cohen3'