diff --git a/CHANGELOG.md b/CHANGELOG.md index d3c07b6..fb4e2bc 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,13 @@ +Version 1.1.0 +------------- + +* Include LICENSE & CHANGELOG.md in sdist tarballs +* Refactor geometry encoding logic, including skipping tiny geometries +* Decoded geometry is now geojson-ish dict +* Winding order is now optional +* Add benchmarking around round function and document how to improve performance +* Document performance tip for protobuf encoding with C bindings for Debian + Version 1.0.0 ------------- @@ -97,7 +107,7 @@ Version 0.0.5 Version 0.0.4 ------------- -* Bug fix - does not try to load wkt geom if wkb succeeds +* Bug fix - does not try to load wkt geom if wkb succeeds Version 0.0.3 ------------- diff --git a/setup.py b/setup.py index ed85460..2e88b35 100644 --- a/setup.py +++ b/setup.py @@ -16,13 +16,13 @@ def test_suite(): return suite setup(name='mapbox-vector-tile', - version='1.0.0', + version='1.1.0', description=u"Mapbox Vector Tile", long_description=long_description, classifiers=[], keywords='', - author=u"Harish Krishna", - author_email='harish.krsn@gmail.com', + author=u"Rob Marianski", + author_email='hello@mapzen.com', url='https://github.com/tilezen/mapbox-vector-tile', license='MIT', packages=find_packages(),