Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit 1bd5f23

Browse filesBrowse files
committed
Bump to new version
1 parent fd72895 commit 1bd5f23
Copy full SHA for 1bd5f23

File tree

Expand file treeCollapse file tree

4 files changed

+30
-4
lines changed
Filter options
Expand file treeCollapse file tree

4 files changed

+30
-4
lines changed

‎README.md

Copy file name to clipboardExpand all lines: README.md
+13Lines changed: 13 additions & 0 deletions
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

Copy file name to clipboardExpand all lines: changelog.txt
+13Lines changed: 13 additions & 0 deletions
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

Copy file name to clipboardExpand all lines: setup.py
+2-2Lines changed: 2 additions & 2 deletions
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='jlawhead@geospatialpython.com',
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

Copy file name to clipboardExpand all lines: shapefile.py
+2-2Lines 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.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 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.