Skip to content

Commit

Permalink
Bump version number to 0.4.1
Browse files Browse the repository at this point in the history
  • Loading branch information
Stefan Oderbolz committed Oct 8, 2014
1 parent 36a2ed5 commit d6847bb
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion osmapi/__init__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
from __future__ import (absolute_import, print_function, unicode_literals)

__version__ = '0.4.0'
__version__ = '0.4.1'

from .OsmApi import * # noqa
18 changes: 9 additions & 9 deletions tests/changeset_tests.py
Original file line number Diff line number Diff line change
Expand Up @@ -98,10 +98,10 @@ def test_ChangesetUpdate(self):
xmltosorteddict(args[3]),
xmltosorteddict(
b'<?xml version="1.0" encoding="UTF-8"?>\n'
b'<osm version="0.6" generator="osmapi/0.4.0">\n'
b'<osm version="0.6" generator="osmapi/0.4.1">\n'
b' <changeset visible="true">\n'
b' <tag k="test" v="foobar"/>\n'
b' <tag k="created_by" v="osmapi/0.4.0"/>\n'
b' <tag k="created_by" v="osmapi/0.4.1"/>\n'
b' </changeset>\n'
b'</osm>\n'
)
Expand Down Expand Up @@ -132,7 +132,7 @@ def test_ChangesetUpdate_with_created_by(self):
xmltosorteddict(args[3]),
xmltosorteddict(
b'<?xml version="1.0" encoding="UTF-8"?>\n'
b'<osm version="0.6" generator="osmapi/0.4.0">\n'
b'<osm version="0.6" generator="osmapi/0.4.1">\n'
b' <changeset visible="true">\n'
b' <tag k="test" v="foobar"/>\n'
b' <tag k="created_by" v="MyTestOSMApp"/>\n'
Expand Down Expand Up @@ -171,10 +171,10 @@ def test_ChangesetCreate(self):
xmltosorteddict(args[3]),
xmltosorteddict(
b'<?xml version="1.0" encoding="UTF-8"?>\n'
b'<osm version="0.6" generator="osmapi/0.4.0">\n'
b'<osm version="0.6" generator="osmapi/0.4.1">\n'
b' <changeset visible="true">\n'
b' <tag k="foobar" v="A new test changeset"/>\n'
b' <tag k="created_by" v="osmapi/0.4.0"/>\n'
b' <tag k="created_by" v="osmapi/0.4.1"/>\n'
b' </changeset>\n'
b'</osm>\n'
)
Expand All @@ -199,7 +199,7 @@ def test_ChangesetCreate_with_created_by(self):
xmltosorteddict(args[3]),
xmltosorteddict(
b'<?xml version="1.0" encoding="UTF-8"?>\n'
b'<osm version="0.6" generator="osmapi/0.4.0">\n'
b'<osm version="0.6" generator="osmapi/0.4.1">\n'
b' <changeset visible="true">\n'
b' <tag k="foobar" v="A new test changeset"/>\n'
b' <tag k="created_by" v="CoolTestApp"/>\n'
Expand Down Expand Up @@ -285,7 +285,7 @@ def test_ChangesetUpload_create_node(self):
xmltosorteddict(args[3]),
xmltosorteddict(
b'<?xml version="1.0" encoding="UTF-8"?>\n'
b'<osmChange version="0.6" generator="osmapi/0.4.0">\n'
b'<osmChange version="0.6" generator="osmapi/0.4.1">\n'
b'<create>\n'
b' <node lat="47.123" lon="8.555" visible="true" '
b'changeset="4444">\n'
Expand Down Expand Up @@ -359,7 +359,7 @@ def test_ChangesetUpload_modify_way(self):
xmltosorteddict(args[3]),
xmltosorteddict(
b'<?xml version="1.0" encoding="UTF-8"?>\n'
b'<osmChange version="0.6" generator="osmapi/0.4.0">\n'
b'<osmChange version="0.6" generator="osmapi/0.4.1">\n'
b'<modify>\n'
b' <way id="4294967296" version="2" visible="true" '
b'changeset="4444">\n'
Expand Down Expand Up @@ -443,7 +443,7 @@ def test_ChangesetUpload_delete_relation(self):
xmltosorteddict(args[3]),
xmltosorteddict(
b'<?xml version="1.0" encoding="UTF-8"?>\n'
b'<osmChange version="0.6" generator="osmapi/0.4.0">\n'
b'<osmChange version="0.6" generator="osmapi/0.4.1">\n'
b'<delete>\n'
b' <relation id="676" version="2" visible="true" '
b'changeset="4444">\n'
Expand Down

0 comments on commit d6847bb

Please sign in to comment.