Skip to content

Commit 312930f

Browse files
committed
v3.0.2.post1. Make version in README.md consistent.
1 parent 8fff374 commit 312930f

File tree

3 files changed

+12
-6
lines changed

3 files changed

+12
-6
lines changed

README.md

Lines changed: 8 additions & 4 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**: 3.0.0
12-
- **Date**: 3rd August, 2025
11+
- **Version**: 3.0.2.post1
12+
- **Date**: 10th October, 2025
1313
- **License**: [MIT](https://github.com/GeospatialPython/pyshp/blob/master/LICENSE.TXT)
1414

1515
## Contents
@@ -92,11 +92,15 @@ part of your geospatial project.
9292

9393

9494
# Version Changes
95-
## 3.0.2.post0
96-
- Re-release to trigger deploy job to Publish to Pypi
9795

9896
## 3.0.2
9997

98+
## .post1
99+
- Update version at the top of this Readme file (to make what PyPi users see consistent with the changelog and __version__).
100+
101+
## .post0
102+
- Re-release to trigger the deploy job to publish PyShp to Pypi
103+
100104
### Bug fix
101105
- Deleted py.typed (probably temporarily). Including the py.typed marker file with a single file package caused type checkers to type check all other libraries installed in the same directory (whether they're typed or not, enforcing type checking for all the adjacent dirs libraries, regardless of the user's intentions for the type checker) (pointed out by @dl1jbe - thanks Thomas). Discussions will be started about a longer term fix, possibly e.g. possibly refactoring to a package, and restoring py.typed.
102106

changelog.txt

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,9 @@
11
VERSION 3.0.2
22

33
2025-10-10
4-
Re-release as 3.0.2.post0 to trigger deploy job to Publish to Pypi
4+
.post1. Documentation update. Update version at the top of README.md. (to make what PyPi users see consistent with the changelog and __version__).
5+
2025-10-10
6+
.post0. Re-release as 3.0.2.post0 to trigger deploy job to Publish to Pypi
57

68
2025-10-09
79
Bug fix:

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.2.post0"
11+
__version__ = "3.0.2.post1"
1212

1313
import array
1414
import doctest

0 commit comments

Comments
 (0)