Skip to content

Commit

Permalink
New 0.4.3 release
Browse files Browse the repository at this point in the history
  • Loading branch information
geographika committed Aug 28, 2017
1 parent 783b8aa commit 25071fa
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 3 deletions.
10 changes: 10 additions & 0 deletions docs/HISTORY.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,16 @@
Releases
--------

0.4.3 (28/08/2017)
++++++++++++++++++

+ `#36 <https://github.com/geographika/mappyfile/pull/36>`_ Create a unique logger for mappyfile logger`
- thanks @loicgrasser
+ `#35 <https://github.com/geographika/mappyfile/pull/35>`_ Add support for missing arithmetic expressions and run flake8 within tox`
- thanks @loicgrasser
+ `#33 <https://github.com/geographika/mappyfile/pull/33>`_ Fix max recursion limit count` - thanks @loicgrasser


0.4.0 (18/08/2017)
++++++++++++++++++

Expand Down
2 changes: 1 addition & 1 deletion mappyfile.pyproj
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<SchemaVersion>2.0</SchemaVersion>
<ProjectGuid>c0748363-1c92-4ed1-8aec-6a098456f29a</ProjectGuid>
<ProjectHome>.</ProjectHome>
<StartupFile>tests\test_ordereddict.py</StartupFile>
<StartupFile>tests\test_pprint.py</StartupFile>
<SearchPath>.</SearchPath>
<WorkingDirectory>.</WorkingDirectory>
<OutputPath>.</OutputPath>
Expand Down
2 changes: 1 addition & 1 deletion mappyfile/ordereddict.py
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ def __getitem__(self, key):

def __setitem__(self, key, v):
if "__type__" in self.keys():
#validator.validate(self, self["__type__"])
# validator.validate(self, self["__type__"])
pass
super(self.__class__, self).__setitem__(key, v)

Expand Down
2 changes: 1 addition & 1 deletion mappyfile/transformer.py
Original file line number Diff line number Diff line change
Expand Up @@ -282,7 +282,7 @@ def bare_string2(self, t):

def string(self, t):
v = t[0].value
#if self.quoter.in_quotes(v):
# if self.quoter.in_quotes(v):
# v = self.quoter.remove_quotes(v)
return v

Expand Down

0 comments on commit 25071fa

Please sign in to comment.