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 Feb 15, 2019
1 parent fd72895 commit 1bd5f23
Show file tree
Hide file tree
Showing 4 changed files with 30 additions and 4 deletions.
13 changes: 13 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,19 @@ part of your geospatial project.

# Version Changes

## 2.1.0

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

### Bug fixes:

- Fixed error when reading optional m-values
- Fixed Record attribute autocomplete in Python 3
- Misc readme cleanup

## 2.0.0

The newest version of PyShp, version 2.0 introduced some major new improvements.
Expand Down
13 changes: 13 additions & 0 deletions changelog.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,17 @@

VERSION 2.1.0

2019-02-15
New Features:
* Added back read/write support for unicode field names.
* Improved Record representation
* More support for geojson on Reader, ShapeRecord, ShapeRecords, and shapes()

Bug fixes:
* Fixed error when reading optional m-values
* Fixed Record attribute autocomplete in Python 3
* Misc readme cleanup

VERSION 2.0.1

2018-11-05
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,14 +7,14 @@ def read_file(file):
return data.decode('utf-8')

setup(name='pyshp',
version='2.0.1',
version='2.1.0',
description='Pure Python read/write support for ESRI Shapefile format',
long_description=read_file('README.md'),
long_description_content_type='text/markdown',
author='Joel Lawhead',
author_email='[email protected]',
url='https://github.com/GeospatialPython/pyshp',
download_url='https://github.com/GeospatialPython/pyshp/archive/2.0.1.tar.gz',
download_url='https://github.com/GeospatialPython/pyshp/archive/2.1.0.tar.gz',
py_modules=['shapefile'],
license='MIT',
zip_safe=False,
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.0.1
version: 2.1.0
Compatible with Python versions 2.7-3.x
"""

__version__ = "2.0.1"
__version__ = "2.1.0"

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

0 comments on commit 1bd5f23

Please sign in to comment.