Skip to content

Commit

Permalink
Bump to new version
Browse files Browse the repository at this point in the history
  • Loading branch information
karimbahgat committed Jan 14, 2021
1 parent 6670125 commit 6229210
Show file tree
Hide file tree
Showing 4 changed files with 37 additions and 3 deletions.
18 changes: 18 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,22 @@ part of your geospatial project.

# Version Changes

## 2.1.3

### Bug fixes:

- Fix recent bug in geojson hole-in-polygon checking (see #205)
- Misc fixes to allow geo interface dump to json (eg dates as strings)
- Handle additional dbf date null values, and return faulty dates as unicode (see #187)
- Add writer target typecheck
- Fix bugs to allow reading shp/shx/dbf separately
- Allow delayed shapefile loading by passing no args
- Fix error with writing empty z/m shapefile (@mcuprjak)
- Fix signed_area() so ignores z/m coords
- Enforce writing the 11th field name character as null-terminator (only first 10 are used)
- Minor README fixes
- Added more tests

## 2.1.2

### Bug fixes:
Expand Down Expand Up @@ -1134,6 +1150,7 @@ Karim Bahgat
Kyle Kelley
Louis Tiao
Marcin Cuprjak
mcuprjak
Micah Cochran
Michael Davis
Michal Čihař
Expand All @@ -1143,6 +1160,7 @@ pakoun
Paulo Ernesto
Raynor Vliegendhart
Razzi Abuissa
RosBer97
Ross Rogers
Ryan Brideau
Tobias Megies
Expand Down
16 changes: 16 additions & 0 deletions changelog.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,20 @@

VERSION 2.1.3

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

VERSION 2.1.2

2020-09-10
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ def read_file(file):
return data.decode('utf-8')

setup(name='pyshp',
version='2.1.2',
version='2.1.3',
description='Pure Python read/write support for ESRI Shapefile format',
long_description=read_file('README.md'),
long_description_content_type='text/markdown',
Expand Down
4 changes: 2 additions & 2 deletions shapefile.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,11 @@
shapefile.py
Provides read and write support for ESRI Shapefiles.
author: jlawhead<at>geospatialpython.com
version: 2.1.2
version: 2.1.3
Compatible with Python versions 2.7-3.x
"""

__version__ = "2.1.2"
__version__ = "2.1.3"

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

0 comments on commit 6229210

Please sign in to comment.