Skip to content

Commit 8118305

Browse files
committed
Bump version
1 parent 92f275b commit 8118305

File tree

2 files changed

+4
-5
lines changed

2 files changed

+4
-5
lines changed

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,14 +7,14 @@ def read_file(file):
77
return data.decode('utf-8')
88

99
setup(name='pyshp',
10-
version='2.0.0',
10+
version='2.0.1',
1111
description='Pure Python read/write support for ESRI Shapefile format',
1212
long_description=read_file('README.md'),
1313
long_description_content_type='text/markdown',
1414
author='Joel Lawhead',
1515
author_email='[email protected]',
1616
url='https://github.com/GeospatialPython/pyshp',
17-
download_url='https://github.com/GeospatialPython/pyshp/archive/2.0.0.tar.gz',
17+
download_url='https://github.com/GeospatialPython/pyshp/archive/2.0.1.tar.gz',
1818
py_modules=['shapefile'],
1919
license='MIT',
2020
zip_safe=False,

shapefile.py

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,11 @@
22
shapefile.py
33
Provides read and write support for ESRI Shapefiles.
44
author: jlawhead<at>geospatialpython.com
5-
date: 2018/09/01
6-
version: 2.0.0
5+
version: 2.0.1
76
Compatible with Python versions 2.7-3.x
87
"""
98

10-
__version__ = "2.0.0"
9+
__version__ = "2.0.1"
1110

1211
from struct import pack, unpack, calcsize, error, Struct
1312
import os

0 commit comments

Comments
 (0)