diff --git a/README.rst b/README.rst index 18769cc..cce237d 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 de5ee36..650f6fb 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 3568d81..569722d 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 c1d6d4d..e173444 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']