Skip to content

Commit 1bd5f23

Browse files
committed
Bump to new version
1 parent fd72895 commit 1bd5f23

File tree

4 files changed

+30
-4
lines changed

4 files changed

+30
-4
lines changed

README.md

+13
Original file line numberDiff line numberDiff line change
@@ -74,6 +74,19 @@ part of your geospatial project.
7474

7575
# Version Changes
7676

77+
## 2.1.0
78+
79+
### New Features:
80+
- Added back read/write support for unicode field names.
81+
- Improved Record representation
82+
- More support for geojson on Reader, ShapeRecord, ShapeRecords, and shapes()
83+
84+
### Bug fixes:
85+
86+
- Fixed error when reading optional m-values
87+
- Fixed Record attribute autocomplete in Python 3
88+
- Misc readme cleanup
89+
7790
## 2.0.0
7891

7992
The newest version of PyShp, version 2.0 introduced some major new improvements.

changelog.txt

+13
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,17 @@
11

2+
VERSION 2.1.0
3+
4+
2019-02-15
5+
New Features:
6+
* Added back read/write support for unicode field names.
7+
* Improved Record representation
8+
* More support for geojson on Reader, ShapeRecord, ShapeRecords, and shapes()
9+
10+
Bug fixes:
11+
* Fixed error when reading optional m-values
12+
* Fixed Record attribute autocomplete in Python 3
13+
* Misc readme cleanup
14+
215
VERSION 2.0.1
316

417
2018-11-05

setup.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -7,14 +7,14 @@ def read_file(file):
77
return data.decode('utf-8')
88

99
setup(name='pyshp',
10-
version='2.0.1',
10+
version='2.1.0',
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',
1414
author='Joel Lawhead',
1515
author_email='[email protected]',
1616
url='https://github.com/GeospatialPython/pyshp',
17-
download_url='https://github.com/GeospatialPython/pyshp/archive/2.0.1.tar.gz',
17+
download_url='https://github.com/GeospatialPython/pyshp/archive/2.1.0.tar.gz',
1818
py_modules=['shapefile'],
1919
license='MIT',
2020
zip_safe=False,

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

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

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

0 commit comments

Comments
 (0)