From 664e2e722654a534f227f051b2b21eeeec975840 Mon Sep 17 00:00:00 2001 From: sethg Date: Tue, 22 Feb 2022 15:54:47 +0100 Subject: [PATCH] Update docs and bump version --- README.rst | 1 + docs/HISTORY.rst | 11 +++++++++++ docs/schemas.rst | 6 +++--- mappyfile/__init__.py | 2 +- 4 files changed, 16 insertions(+), 4 deletions(-) diff --git a/README.rst b/README.rst index 18769ccf..cce237d7 100644 --- a/README.rst +++ b/README.rst @@ -93,6 +93,7 @@ Contributors * Julien Enselme `@jenselme `_ * Loïc Gasser `@loicgasser `_ * Ian Turton `@ianturton `_ +* `@thorag76 `_ .. .. include:: docs/HISTORY.rst diff --git a/docs/HISTORY.rst b/docs/HISTORY.rst index de5ee369..650f6fb4 100644 --- a/docs/HISTORY.rst +++ b/docs/HISTORY.rst @@ -1,6 +1,17 @@ Releases -------- +0.9.4 22/02/2022 +++++++++++++++++ + ++ `#137 `_ - Checking mapfile dict properties creates invalid empty dictionaries ++ `#119 `_ - STYLE GEOMTRANSFORM 'labelcenter' ++ `#143 `_ - Automate schema building ++ `#142 `_ - Allow newer versions of jsonschema for py3 ++ `#141 `_ - Update and fix Continuous Integration ++ `#139 `_ - Feature: align values in column ++ `#138 `_ - Update schema based on new Mapfile validation rules + 0.9.3 13/12/2021 ++++++++++++++++ diff --git a/docs/schemas.rst b/docs/schemas.rst index 3568d81b..569722dc 100644 --- a/docs/schemas.rst +++ b/docs/schemas.rst @@ -3,14 +3,14 @@ Mapfile Schema ============== -The full Mapfile schema can be downloaded directly from this link - :download:`mapfile.json `. +The full Mapfile schema can be downloaded directly from this link - :download:`mapfile-latest.json `. The schema stores ``minVersion`` and ``maxVersion`` properties in a ``metadata`` object for each keyword. This allow Mapfiles to be validated against older or newer releases of MapServer to see if they are still valid. Other versions available online are: -+ :download:`mapfile.json ` -+ :download:`mapfile.json ` ++ :download:`mapfile-schema-8-0.json ` ++ :download:`mapfile-schema-7-6.json ` The Mapfile schema shown below is planned to be proposed as an official Mapfile language schema, subject to voting by the MapServer PSC (Project Steering Committee). Further details on the schema are outlined in the draft RFC (Request for Comment) at :ref:`rfc123`. diff --git a/mappyfile/__init__.py b/mappyfile/__init__.py index c1d6d4dc..e173444c 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 -__version__ = "0.9.3" +__version__ = "0.9.4" __all__ = ['open', 'load', 'loads', 'find', 'findall', 'findunique', 'dumps', 'dump', 'save', 'findkey', 'update', 'validate', 'create']