Skip to content

Commit

Permalink
Update version and release notes
Browse files Browse the repository at this point in the history
  • Loading branch information
geographika committed Oct 12, 2018
1 parent 75e0a2c commit 5502bd1
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 2 deletions.
9 changes: 9 additions & 0 deletions docs/HISTORY.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,15 @@
Releases
--------

0.7.6 (13/10/2018)
++++++++++++++++++

+ Deprecated ``write`` function removed from the API and codebase
+ Update OFFSET validation to allow attribute bindings - see https://github.com/mapserver/docs/pull/256
+ `#68 <https://github.com/geographika/mappyfile/issues/68>`_ - Support pickling of DefaultOrderedDict in Python3
+ `#67 <https://github.com/geographika/mappyfile/issues/67>`_ - Fix deprecation warnings for grammar regular expressions in Python 3.6
+ `#65 <https://github.com/geographika/mappyfile/issues/65>`_ - Handle hexadecimal color translucence

0.7.5 (14/09/2018)
++++++++++++++++++

Expand Down
4 changes: 2 additions & 2 deletions mappyfile/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@
from mappyfile.utils import open, load, loads, find, findall, findunique, dumps, dump, save
from mappyfile.utils import findkey, update, validate

__version__ = "0.7.5"
__version__ = "0.7.6"

__all__ = ['open', 'load', 'loads', 'find', 'findall', 'findunique', 'dumps', 'dump', 'save', 'write',
__all__ = ['open', 'load', 'loads', 'find', 'findall', 'findunique', 'dumps', 'dump', 'save',
'findkey', 'update', 'validate']


Expand Down

0 comments on commit 5502bd1

Please sign in to comment.