Skip to content

Commit

Permalink
Update docs and bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
geographika committed Feb 22, 2022
1 parent 0fb89c6 commit 664e2e7
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 4 deletions.
1 change: 1 addition & 0 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -93,6 +93,7 @@ Contributors
* Julien Enselme `@jenselme <https://github.com/jenselme>`_
* Loïc Gasser `@loicgasser <https://github.com/loicgasser>`_
* Ian Turton `@ianturton <https://github.com/ianturton>`_
* `@thorag76 <https://github.com/thorag76>`_

..
.. include:: docs/HISTORY.rst
Expand Down
11 changes: 11 additions & 0 deletions docs/HISTORY.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,17 @@
Releases
--------

0.9.4 22/02/2022
++++++++++++++++

+ `#137 <https://github.com/geographika/mappyfile/issues/137>`_ - Checking mapfile dict properties creates invalid empty dictionaries
+ `#119 <https://github.com/geographika/mappyfile/issues/119>`_ - STYLE GEOMTRANSFORM 'labelcenter'
+ `#143 <https://github.com/geographika/mappyfile/pull/143>`_ - Automate schema building
+ `#142 <https://github.com/geographika/mappyfile/pull/142>`_ - Allow newer versions of jsonschema for py3
+ `#141 <https://github.com/geographika/mappyfile/pull/141>`_ - Update and fix Continuous Integration
+ `#139 <https://github.com/geographika/mappyfile/pull/139>`_ - Feature: align values in column
+ `#138 <https://github.com/geographika/mappyfile/pull/138>`_ - Update schema based on new Mapfile validation rules

0.9.3 13/12/2021
++++++++++++++++

Expand Down
6 changes: 3 additions & 3 deletions docs/schemas.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,14 @@
Mapfile Schema
==============

The full Mapfile schema can be downloaded directly from this link - :download:`mapfile.json <schemas/mapfile-latest.json>`.
The full Mapfile schema can be downloaded directly from this link - :download:`mapfile-latest.json <schemas/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 <schemas/mapfile-schema-8-0.json>`
+ :download:`mapfile.json <schemas/mapfile-schema-7-6.json>`
+ :download:`mapfile-schema-8-0.json <schemas/mapfile-schema-8-0.json>`
+ :download:`mapfile-schema-7-6.json <schemas/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`.
Expand Down
2 changes: 1 addition & 1 deletion mappyfile/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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']
Expand Down

0 comments on commit 664e2e7

Please sign in to comment.