Skip to content

Commit

Permalink
Bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
karimbahgat committed Nov 7, 2018
1 parent 92f275b commit 8118305
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 5 deletions.
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,14 +7,14 @@ def read_file(file):
return data.decode('utf-8')

setup(name='pyshp',
version='2.0.0',
version='2.0.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='[email protected]',
url='https://github.com/GeospatialPython/pyshp',
download_url='https://github.com/GeospatialPython/pyshp/archive/2.0.0.tar.gz',
download_url='https://github.com/GeospatialPython/pyshp/archive/2.0.1.tar.gz',
py_modules=['shapefile'],
license='MIT',
zip_safe=False,
Expand Down
5 changes: 2 additions & 3 deletions shapefile.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,11 @@
shapefile.py
Provides read and write support for ESRI Shapefiles.
author: jlawhead<at>geospatialpython.com
date: 2018/09/01
version: 2.0.0
version: 2.0.1
Compatible with Python versions 2.7-3.x
"""

__version__ = "2.0.0"
__version__ = "2.0.1"

from struct import pack, unpack, calcsize, error, Struct
import os
Expand Down

0 comments on commit 8118305

Please sign in to comment.