From db105fa768f91825db292b205f2319f3dcf35543 Mon Sep 17 00:00:00 2001 From: Karim Bahgat Date: Wed, 9 Sep 2020 22:18:45 +0200 Subject: [PATCH] prepare for new release --- README.md | 3 +++ changelog.txt | 2 +- setup.py | 4 ++-- 3 files changed, 6 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index bc633d0..39f279d 100644 --- a/README.md +++ b/README.md @@ -1118,10 +1118,12 @@ David A. Riggs davidh-ssec Evan Heidtmann ezcitron +fiveham geospatialpython Hannes Ignacio Martinez Vazquez Jason Moujaes +Jonty Wareing Karim Bahgat Kyle Kelley Louis Tiao @@ -1140,5 +1142,6 @@ Ryan Brideau Tobias Megies Tommi Penttinen Uli Köhler +Vsevolod Novikov Zac Miller ``` diff --git a/changelog.txt b/changelog.txt index 56d15d0..ed28f54 100644 --- a/changelog.txt +++ b/changelog.txt @@ -1,7 +1,7 @@ VERSION 2.1.1 -2020-08-26 +2020-09-09 Improvements: * Handle shapes with no coords and represent as geojson with no coords (GeoJSON null-equivalent) * Expand testing to Python 3.6, 3.7, 3.8 and PyPy; drop 3.3 and 3.4 [@mwtoews] diff --git a/setup.py b/setup.py index 39ae7db..5728e3f 100644 --- a/setup.py +++ b/setup.py @@ -7,14 +7,14 @@ def read_file(file): return data.decode('utf-8') setup(name='pyshp', - version='2.1.0', + version='2.1.1', description='Pure Python read/write support for ESRI Shapefile format', long_description=read_file('README.md'), long_description_content_type='text/markdown', author='Joel Lawhead', author_email='jlawhead@geospatialpython.com', url='https://github.com/GeospatialPython/pyshp', - download_url='https://github.com/GeospatialPython/pyshp/archive/2.1.0.tar.gz', + download_url='https://github.com/GeospatialPython/pyshp/archive/2.1.1.tar.gz', py_modules=['shapefile'], license='MIT', zip_safe=False,