Skip to content

Commit 10c6176

Browse files
authored
Update to new bugfix version
1 parent 386f704 commit 10c6176

File tree

3 files changed

+10
-4
lines changed

3 files changed

+10
-4
lines changed

Diff for: changelog.txt

+6
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
VERSION 1.2.12
2+
3+
2017-08-24 Karim Bahgat <karim.bahgat.norway@gmail.com>
4+
* 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.
5+
* Allow reading file-like objects without seek method (such as ZipFile or urllib.urlopen).
6+
17
VERSION 1.2.11
28

39
2017-04-29 Karim Bahgat <karim.bahgat.norway@gmail.com>

Diff for: setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
from setuptools import setup
22

33
setup(name='pyshp',
4-
version='1.2.11',
4+
version='1.2.12',
55
description='Pure Python read/write support for ESRI Shapefile format',
66
long_description=open('README.md').read(),
77
author='Joel Lawhead',

Diff for: shapefile.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,12 @@
22
shapefile.py
33
Provides read and write support for ESRI Shapefiles.
44
author: jlawhead<at>geospatialpython.com
5-
date: 2017/04/29
6-
version: 1.2.12-dev
5+
date: 2017/08/24
6+
version: 1.2.12
77
Compatible with Python versions 2.7-3.x
88
"""
99

10-
__version__ = "1.2.12-dev"
10+
__version__ = "1.2.12"
1111

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

0 commit comments

Comments
 (0)