Skip to content

Commit bcf842d

Browse files
committed
v3.0.3.dev. Document fix for UnboundLocalError and credit Edward
1 parent 7b73fbb commit bcf842d

File tree

3 files changed

+12
-4
lines changed

3 files changed

+12
-4
lines changed

README.md

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

9494
# Version Changes
9595

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

98101
### Testing.
99-
- Test PyShp on the Python 3.14 official release (officially released this week, no longer in beta)
102+
- Test PyShp on the Python 3.14 official release (officially released this week, no longer in beta).
100103

101104
## 3.0.2
102105

@@ -1572,6 +1575,7 @@ Casey Meisenzahl
15721575
Charles Arnold
15731576
David A. Riggs
15741577
davidh-ssec
1578+
Edward Kawas
15751579
Evan Heidtmann
15761580
ezcitron
15771581
fiveham

changelog.txt

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,8 @@
1-
VERSION NEXT
1+
VERSION 3.0.3.dev
2+
3+
2025-10-25
4+
Bug fix:
5+
* Prevented UnboundLocalError when reading non-single point M and Z type Shapefiles (@ekawas-vrify).
26

37
2025-10-10
48
Testing:

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

1313
import array
1414
import doctest

0 commit comments

Comments
 (0)