Skip to content

Commit fa83551

Browse files
authored
Update to new version number
1 parent 7a27a71 commit fa83551

File tree

3 files changed

+17
-7
lines changed

3 files changed

+17
-7
lines changed

changelog.txt

+12
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,15 @@
1+
VERSION 1.2.11
2+
3+
2017-04-29 Karim Bahgat <[email protected]>
4+
* Fixed bugs when reading and writing empty shapefiles.
5+
* Fixed bug when writing null geometry.
6+
* Fixed misc data type errors.
7+
* Fixed error when reading files with wrong record length.
8+
* Use max field precision when saving decimal numbers.
9+
* Improved shapetype detection.
10+
* Expanded docs on data types.
11+
* General doc additions and travis icon.
12+
113
VERSION 1.2.10
214

315
2016-09-24 Karim Bahgat <[email protected]>

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.10',
4+
version='1.2.11',
55
description='Pure Python read/write support for ESRI Shapefile format',
66
long_description=open('README.md').read(),
77
author='Joel Lawhead',

shapefile.py

+4-6
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,12 @@
22
shapefile.py
33
Provides read and write support for ESRI Shapefiles.
44
author: jlawhead<at>geospatialpython.com
5-
date: 2016/09/24
6-
version: 1.2.10
7-
Compatible with Python versions 2.4-3.x
8-
version changelog:
9-
- Bump version to fix pip install issue.
5+
date: 2017/04/29
6+
version: 1.2.11
7+
Compatible with Python versions 2.7-3.x
108
"""
119

12-
__version__ = "1.2.10"
10+
__version__ = "1.2.11"
1311

1412
from struct import pack, unpack, calcsize, error, Struct
1513
import os

0 commit comments

Comments
 (0)