Skip to content

Commit 6229210

Browse files
committed
Bump to new version
1 parent 6670125 commit 6229210

File tree

4 files changed

+37
-3
lines changed

4 files changed

+37
-3
lines changed

README.md

+18
Original file line numberDiff line numberDiff line change
@@ -70,6 +70,22 @@ part of your geospatial project.
7070

7171
# Version Changes
7272

73+
## 2.1.3
74+
75+
### Bug fixes:
76+
77+
- Fix recent bug in geojson hole-in-polygon checking (see #205)
78+
- Misc fixes to allow geo interface dump to json (eg dates as strings)
79+
- Handle additional dbf date null values, and return faulty dates as unicode (see #187)
80+
- Add writer target typecheck
81+
- Fix bugs to allow reading shp/shx/dbf separately
82+
- Allow delayed shapefile loading by passing no args
83+
- Fix error with writing empty z/m shapefile (@mcuprjak)
84+
- Fix signed_area() so ignores z/m coords
85+
- Enforce writing the 11th field name character as null-terminator (only first 10 are used)
86+
- Minor README fixes
87+
- Added more tests
88+
7389
## 2.1.2
7490

7591
### Bug fixes:
@@ -1134,6 +1150,7 @@ Karim Bahgat
11341150
Kyle Kelley
11351151
Louis Tiao
11361152
Marcin Cuprjak
1153+
mcuprjak
11371154
Micah Cochran
11381155
Michael Davis
11391156
Michal Čihař
@@ -1143,6 +1160,7 @@ pakoun
11431160
Paulo Ernesto
11441161
Raynor Vliegendhart
11451162
Razzi Abuissa
1163+
RosBer97
11461164
Ross Rogers
11471165
Ryan Brideau
11481166
Tobias Megies

changelog.txt

+16
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,20 @@
11

2+
VERSION 2.1.3
3+
4+
2021-01-14
5+
Bug fixes:
6+
* Fix recent bug in geojson hole-in-polygon checking (see #205)
7+
* Misc fixes to allow geo interface dump to json (eg dates as strings)
8+
* Handle additional dbf date null values, and return faulty dates as unicode (see #187)
9+
* Add writer target typecheck
10+
* Fix bugs to allow reading shp/shx/dbf separately
11+
* Allow delayed shapefile loading by passing no args
12+
* Fix error with writing empty z/m shapefile (@mcuprjak)
13+
* Fix signed_area() so ignores z/m coords
14+
* Enforce writing the 11th field name character as null-terminator (only first 10 are used)
15+
* Minor README fixes
16+
* Added more tests
17+
218
VERSION 2.1.2
319

420
2020-09-10

setup.py

+1-1
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.2',
10+
version='2.1.3',
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

+2-2
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.2
5+
version: 2.1.3
66
Compatible with Python versions 2.7-3.x
77
"""
88

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

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

0 commit comments

Comments
 (0)