File tree Expand file tree Collapse file tree 4 files changed +30
-4
lines changed
Filter options
Expand file tree Collapse file tree 4 files changed +30
-4
lines changed
Original file line number Diff line number Diff line change @@ -74,6 +74,19 @@ part of your geospatial project.
74
74
75
75
# Version Changes
76
76
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
+
77
90
## 2.0.0
78
91
79
92
The newest version of PyShp, version 2.0 introduced some major new improvements.
Original file line number Diff line number Diff line change 1
1
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
+
2
15
VERSION 2.0.1
3
16
4
17
2018-11-05
Original file line number Diff line number Diff line change @@ -7,14 +7,14 @@ def read_file(file):
7
7
return data .decode ('utf-8' )
8
8
9
9
setup (name = 'pyshp' ,
10
- version = '2.0.1 ' ,
10
+ version = '2.1.0 ' ,
11
11
description = 'Pure Python read/write support for ESRI Shapefile format' ,
12
12
long_description = read_file ('README.md' ),
13
13
long_description_content_type = 'text/markdown' ,
14
14
author = 'Joel Lawhead' ,
15
15
author_email = 'jlawhead@geospatialpython.com' ,
16
16
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' ,
18
18
py_modules = ['shapefile' ],
19
19
license = 'MIT' ,
20
20
zip_safe = False ,
Original file line number Diff line number Diff line change 2
2
shapefile.py
3
3
Provides read and write support for ESRI Shapefiles.
4
4
author: jlawhead<at>geospatialpython.com
5
- version: 2.0.1
5
+ version: 2.1.0
6
6
Compatible with Python versions 2.7-3.x
7
7
"""
8
8
9
- __version__ = "2.0.1 "
9
+ __version__ = "2.1.0 "
10
10
11
11
from struct import pack , unpack , calcsize , error , Struct
12
12
import os
You can’t perform that action at this time.
0 commit comments