From ec972bb9b54db6bbbe4abce5817047e060ad4c40 Mon Sep 17 00:00:00 2001 From: sethg Date: Tue, 1 Mar 2022 22:58:26 +0100 Subject: [PATCH] Create 0.9.5 release --- docs/HISTORY.rst | 9 +++++++++ mappyfile/__init__.py | 2 +- 2 files changed, 10 insertions(+), 1 deletion(-) diff --git a/docs/HISTORY.rst b/docs/HISTORY.rst index 650f6fb..ff9f0ab 100644 --- a/docs/HISTORY.rst +++ b/docs/HISTORY.rst @@ -1,6 +1,15 @@ Releases -------- +0.9.5 01/03/2022 +++++++++++++++++ + ++ `#147 `_ - Create list objects for containers when modifying dicts ++ `#146 `_ - Add COMPOSITE validation ++ `#145 `_ - layers.insert fails with dict error ++ `#144 `_ - Invalid value in COMPOSITE - 'compfilter' ++ `#140 `_ - New feature: group complex types at the end + 0.9.4 22/02/2022 ++++++++++++++++ diff --git a/mappyfile/__init__.py b/mappyfile/__init__.py index 6162084..081120e 100644 --- a/mappyfile/__init__.py +++ b/mappyfile/__init__.py @@ -35,7 +35,7 @@ from mappyfile.utils import open, load, loads, find, findall, findunique, dumps, dump, save from mappyfile.utils import findkey, update, validate, create, dict_move_to_end -__version__ = "0.9.4" +__version__ = "0.9.5" __all__ = ['open', 'load', 'loads', 'find', 'findall', 'findunique', 'dumps', 'dump', 'save', 'findkey', 'update', 'validate', 'create', 'dict_move_to_end']