Skip to content

Commit 0672adf

Browse files
committed
Bump to new version
1 parent b13d13b commit 0672adf

File tree

3 files changed

+9
-3
lines changed

3 files changed

+9
-3
lines changed

changelog.txt

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,10 @@
11

2+
VERSION 2.1.2
3+
4+
2020-09-10
5+
Bug fixes:
6+
* Fix issue where `warnings.simplefilter('always')` changes global warning behavior [see #203]
7+
28
VERSION 2.1.1
39

410
2020-09-09

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ def read_file(file):
77
return data.decode('utf-8')
88

99
setup(name='pyshp',
10-
version='2.1.1',
10+
version='2.1.2',
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',

shapefile.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,11 @@
22
shapefile.py
33
Provides read and write support for ESRI Shapefiles.
44
author: jlawhead<at>geospatialpython.com
5-
version: 2.1.1
5+
version: 2.1.2
66
Compatible with Python versions 2.7-3.x
77
"""
88

9-
__version__ = "2.1.1"
9+
__version__ = "2.1.2"
1010

1111
from struct import pack, unpack, calcsize, error, Struct
1212
import os

0 commit comments

Comments
 (0)