From da5f06711dd43f9573fa9f1c9907c28edc9c997e Mon Sep 17 00:00:00 2001 From: sethg Date: Tue, 14 Jul 2020 10:56:42 +0200 Subject: [PATCH] Bump version and update release notes --- docs/HISTORY.rst | 5 ++++- mappyfile/__init__.py | 2 +- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/docs/HISTORY.rst b/docs/HISTORY.rst index 00aa66a..7819a77 100644 --- a/docs/HISTORY.rst +++ b/docs/HISTORY.rst @@ -8,7 +8,10 @@ Releases for different versions of MapServer + A new ``schema`` command line tool to export Mapfile schemas for different versions of MapServer + Allow Mapfile validation based on a specific version of MapServer -+ Add better error message when incorrect dicts are passed to printer ++ Add better error message when incorrect dicts are passed to printer ++ Add py38 to continuous integration testing ++ Add command line scripts to continuous integration testing ++ Fix ``CONNECTIONOPTIONS`` formatted output + Update to lark-parser 0.9.0 + `#109 `_ - Add validation based on MapServer version + `#96 `_ - Unquoted Unicode strings cause parsing errors diff --git a/mappyfile/__init__.py b/mappyfile/__init__.py index e03eb0a..f6bc238 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 -__version__ = "0.8.4" +__version__ = "0.9.0" __all__ = ['open', 'load', 'loads', 'find', 'findall', 'findunique', 'dumps', 'dump', 'save', 'findkey', 'update', 'validate']