Skip to content

Commit 3fe5190

Browse files
committed
v3.0.3.dev. Document fix for UnboundLocalError and credit Edward
1 parent 7ee32e7 commit 3fe5190

File tree

3 files changed

+13
-3
lines changed

3 files changed

+13
-3
lines changed

README.md

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -93,12 +93,16 @@ part of your geospatial project.
9393

9494
# Version Changes
9595

96+
## 3.0.3.dev
97+
### Bug fix
98+
- Prevented UnboundLocalError when reading non-single point M and Z type Shapefiles (@ekawas-vrify).
99+
96100
## 3.0.2
97101

98-
## .post1
102+
### .post1
99103
- Update version at the top of this Readme file (to make what PyPi users see consistent with the changelog and __version__).
100104

101-
## .post0
105+
### .post0
102106
- Re-release to trigger the deploy job to publish PyShp to Pypi
103107

104108
### Bug fix
@@ -1567,6 +1571,7 @@ Casey Meisenzahl
15671571
Charles Arnold
15681572
David A. Riggs
15691573
davidh-ssec
1574+
Edward Kawas
15701575
Evan Heidtmann
15711576
ezcitron
15721577
fiveham

changelog.txt

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
VERSION 3.0.3.dev
2+
3+
2025-10-25
4+
Prevented UnboundLocalError when reading non-single point M and Z type Shapefiles (@ekawas-vrify)
5+
16
VERSION 3.0.2
27

38
2025-10-10

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.post1"
11+
__version__ = "3.0.3.dev"
1212

1313
import array
1414
import doctest

0 commit comments

Comments
 (0)