Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -93,6 +93,17 @@ part of your geospatial project.

# Version Changes

## 3.0.1

### Improvements
- Reader(shp=, dbf=, shx=) now support pathlib.Paths, and any pathlike object (@mwtoews).
### Bug fixes
- PyShp 3 no longer modifies the global doctest module (@JamesParrott).
### Code quality
- isort replaced by Ruff check's I rule (@mwtoews).
- mypy --strict used in CI (@JamesParrott).
- LICENSE.TXT re-encoded in UTF-8 (@musicinmybrain).

## 3.0.0

### Breaking Changes:
Expand Down
11 changes: 10 additions & 1 deletion changelog.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,16 @@
VERSION WIP
VERSION 3.0.1

2025-08-19
Improvements:
* Reader(shp=, dbf=, shx=) now support pathlib.Paths, and any pathlike object (@mwtoews).
Bug fixes:
* PyShp 3 no longer modifies the global doctest module (@JamesParrott).
Code quality:
* isort replaced by Ruff check's I rule (@mwtoews).
* mypy --strict used in CI (@JamesParrott).
* LICENSE.TXT re-encoded in UTF-8 (@musicinmybrain)


VERSION 3.0.0

2025-08-03
Expand Down
2 changes: 1 addition & 1 deletion src/shapefile.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

from __future__ import annotations

__version__ = "3.0.0"
__version__ = "3.0.1"

import array
import doctest
Expand Down
Loading