Skip to content

Commit 666f2cc

Browse files
committed
v3.0.0 Python 3.9+ only. Type hints. Shape subtypes. Faster writes.
1 parent 118d2b3 commit 666f2cc

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ 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**: 3.0.0-alpha
11+
- **Version**: 3.0.0
1212
- **Date**: 3rd August, 2025
1313
- **License**: [MIT](https://github.com/GeospatialPython/pyshp/blob/master/LICENSE.TXT)
1414

@@ -93,7 +93,7 @@ part of your geospatial project.
9393

9494
# Version Changes
9595

96-
## 3.0.0-alpha
96+
## 3.0.0
9797

9898
### Breaking Changes:
9999
- Python 2 and Python 3.8 support dropped.

changelog.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
VERSION 3.0.0-alpha
1+
VERSION 3.0.0
22

33
2025-08-03
44
Breaking Changes:

src/shapefile.py

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

99
from __future__ import annotations
1010

11-
__version__ = "3.0.0-alpha"
11+
__version__ = "3.0.0"
1212

1313
import array
1414
import doctest

0 commit comments

Comments
 (0)