Skip to content

Commit 9822271

Browse files
committed
Bump final version for release
1 parent ed7da0c commit 9822271

File tree

3 files changed

+7
-6
lines changed

3 files changed

+7
-6
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@ The Python Shapefile Library (PyShp) reads and writes ESRI Shapefiles in pure Py
88

99
- **Author**: [Joel Lawhead](https://github.com/GeospatialPython)
1010
- **Maintainers**: [Karim Bahgat](https://github.com/karimbahgat)
11-
- **Version**: 2.3.0dev
12-
- **Date**: TBD
11+
- **Version**: 2.2.0
12+
- **Date**: 2 February, 2022
1313
- **License**: [MIT](https://github.com/GeospatialPython/pyshp/blob/master/LICENSE.TXT)
1414

1515
## Contents

changelog.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11

22
VERSION 2.2.0
33

4-
2022-01-07
4+
2022-02-02
55
New Features:
66
* Read shapefiles directly from zipfiles.
77
* Read shapefiles directly from urls.

shapefile.py

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,13 @@
11
"""
22
shapefile.py
33
Provides read and write support for ESRI Shapefiles.
4-
author: jlawhead<at>geospatialpython.com
5-
version: 2.2.0dev
4+
authors: jlawhead<at>geospatialpython.com
5+
maintainer: karim.bahgat.norway<at>gmail.com
6+
version: 2.2.0
67
Compatible with Python versions 2.7-3.x
78
"""
89

9-
__version__ = "2.2.0dev"
10+
__version__ = "2.2.0"
1011

1112
from struct import pack, unpack, calcsize, error, Struct
1213
import os

0 commit comments

Comments
 (0)