Skip to content

Commit a8b3b4a

Browse files
committed
Bump to next version
1 parent a539993 commit a8b3b4a

File tree

3 files changed

+36
-2
lines changed

3 files changed

+36
-2
lines changed

README.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -70,9 +70,27 @@ part of your geospatial project.
7070

7171
# Version Changes
7272

73+
## 2.1.1
74+
75+
### Improvements:
76+
77+
- Handle shapes with no coords and represent as geojson with no coords (GeoJSON null-equivalent)
78+
- Expand testing to Python 3.6, 3.7, 3.8 and PyPy; drop 3.3 and 3.4 [@mwtoews]
79+
- Added pytest testing [@jmoujaes]
80+
81+
### Bug fixes:
82+
83+
- Fix incorrect geo interface handling of multipolygons with complex exterior-hole relations [see #202]
84+
- Enforce shapefile requirement of at least one field, to avoid writing invalid shapefiles [@Jonty]
85+
- Fix Reader geo interface including DeletionFlag field in feature properties [@nnseva]
86+
- Fix polygons not being auto closed, which was accidentally dropped
87+
- Fix error for null geometries in feature geojson
88+
- Misc docstring cleanup [@fiveham]
89+
7390
## 2.1.0
7491

7592
### New Features:
93+
7694
- Added back read/write support for unicode field names.
7795
- Improved Record representation
7896
- More support for geojson on Reader, ShapeRecord, ShapeRecords, and shapes()

changelog.txt

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

2+
VERSION 2.1.1
3+
4+
2020-08-26
5+
Improvements:
6+
* Handle shapes with no coords and represent as geojson with no coords (GeoJSON null-equivalent)
7+
* Expand testing to Python 3.6, 3.7, 3.8 and PyPy; drop 3.3 and 3.4 [@mwtoews]
8+
* Added pytest testing [@jmoujaes]
9+
10+
Bug fixes:
11+
* Fix incorrect geo interface handling of multipolygons with complex exterior-hole relations [see #202]
12+
* Enforce shapefile requirement of at least one field, to avoid writing invalid shapefiles [@Jonty]
13+
* Fix Reader geo interface including DeletionFlag field in feature properties [@nnseva]
14+
* Fix polygons not being auto closed, which was accidentally dropped
15+
* Fix error for null geometries in feature geojson
16+
* Misc docstring cleanup [@fiveham]
17+
218
VERSION 2.1.0
319

420
2019-02-15

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

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

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

0 commit comments

Comments
 (0)