From ce6bf82e97c9bb5919298afd0cd9ca024b3a26fa Mon Sep 17 00:00:00 2001 From: sethg Date: Mon, 25 Feb 2019 00:35:14 +0100 Subject: [PATCH] New v0.8.0 release --- docs/HISTORY.rst | 3 ++- mappyfile/__init__.py | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/docs/HISTORY.rst b/docs/HISTORY.rst index eaf5df3..38c9699 100644 --- a/docs/HISTORY.rst +++ b/docs/HISTORY.rst @@ -1,7 +1,7 @@ Releases -------- -0.7.7 24/02/2019 +0.8.0 24/02/2019 ++++++++++++++++ + Update code to work with Lark 0.6.6 (see #71) @@ -9,6 +9,7 @@ Releases (see request `#69 `_) + Add ``**kwargs`` to main API to allow greater flexibility with plugins + Fix DeprecationWarnings relating to Python 3.7.2 (thanks @tigerfoot for the report) ++ Tested use with new jsonschema 3.0.0 release 0.7.6 (13/10/2018) ++++++++++++++++++ diff --git a/mappyfile/__init__.py b/mappyfile/__init__.py index 787675e..8554f87 100644 --- a/mappyfile/__init__.py +++ b/mappyfile/__init__.py @@ -6,7 +6,7 @@ from mappyfile.utils import open, load, loads, find, findall, findunique, dumps, dump, save from mappyfile.utils import findkey, update, validate -__version__ = "0.7.7" +__version__ = "0.8.0" __all__ = ['open', 'load', 'loads', 'find', 'findall', 'findunique', 'dumps', 'dump', 'save', 'findkey', 'update', 'validate']