Skip to content

Commit

Permalink
Update to new bugfix version
Browse files Browse the repository at this point in the history
  • Loading branch information
karimbahgat authored Aug 24, 2017
1 parent 386f704 commit 10c6176
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 4 deletions.
6 changes: 6 additions & 0 deletions changelog.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
VERSION 1.2.12

2017-08-24 Karim Bahgat <[email protected]>
* Fixed errors caused by strict value type checking, as introduced in v1.2.11. Now more lenient by attempting force conversion of values to match the field type.
* Allow reading file-like objects without seek method (such as ZipFile or urllib.urlopen).

VERSION 1.2.11

2017-04-29 Karim Bahgat <[email protected]>
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
from setuptools import setup

setup(name='pyshp',
version='1.2.11',
version='1.2.12',
description='Pure Python read/write support for ESRI Shapefile format',
long_description=open('README.md').read(),
author='Joel Lawhead',
Expand Down
6 changes: 3 additions & 3 deletions shapefile.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,12 @@
shapefile.py
Provides read and write support for ESRI Shapefiles.
author: jlawhead<at>geospatialpython.com
date: 2017/04/29
version: 1.2.12-dev
date: 2017/08/24
version: 1.2.12
Compatible with Python versions 2.7-3.x
"""

__version__ = "1.2.12-dev"
__version__ = "1.2.12"

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

0 comments on commit 10c6176

Please sign in to comment.