Skip to content

Commit 3ac5b3d

Browse files
authored
Merge pull request #364 from GeospatialPython/v3.0.1-rc
v3.0.1
2 parents 7b08438 + 685b028 commit 3ac5b3d

File tree

3 files changed

+22
-2
lines changed

3 files changed

+22
-2
lines changed

README.md

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

9494
# Version Changes
9595

96+
## 3.0.1
97+
98+
### Improvements
99+
- Reader(shp=, dbf=, shx=) now support pathlib.Paths, and any pathlike object (@mwtoews).
100+
### Bug fixes
101+
- PyShp 3 no longer modifies the global doctest module (@JamesParrott).
102+
### Code quality
103+
- isort replaced by Ruff check's I rule (@mwtoews).
104+
- mypy --strict used in CI (@JamesParrott).
105+
- LICENSE.TXT re-encoded in UTF-8 (@musicinmybrain).
106+
96107
## 3.0.0
97108

98109
### Breaking Changes:

changelog.txt

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,16 @@
1-
VERSION WIP
1+
VERSION 3.0.1
2+
3+
2025-08-19
24
Improvements:
5+
* Reader(shp=, dbf=, shx=) now support pathlib.Paths, and any pathlike object (@mwtoews).
6+
Bug fixes:
7+
* PyShp 3 no longer modifies the global doctest module (@JamesParrott).
8+
Code quality:
9+
* isort replaced by Ruff check's I rule (@mwtoews).
10+
* mypy --strict used in CI (@JamesParrott).
311
* LICENSE.TXT re-encoded in UTF-8 (@musicinmybrain)
412

13+
514
VERSION 3.0.0
615

716
2025-08-03

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"
11+
__version__ = "3.0.1"
1212

1313
import array
1414
import doctest

0 commit comments

Comments
 (0)