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
12 changes: 9 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@ The Python Shapefile Library (PyShp) reads and writes ESRI Shapefiles in pure Py
![build status](https://github.com/GeospatialPython/pyshp/actions/workflows/build.yml/badge.svg)

- **Author**: [Joel Lawhead](https://github.com/GeospatialPython)
- **Maintainers**: [Karim Bahgat](https://github.com/karimbahgat)
- **Version**: 3.0.6
- **Date**: 19th May 2026
- **Maintainers**: [James Parrott](https://github.com/JamesParrott) & [Karim Bahgat](https://github.com/karimbahgat)
- **Version**: 3.0.7
- **Date**: 20th May 2026
- **License**: [MIT](https://github.com/GeospatialPython/pyshp/blob/master/LICENSE.TXT)

## Contents
Expand Down Expand Up @@ -93,6 +93,12 @@ part of your geospatial project.

# Version Changes

## 3.0.7

### Testability / separation of concerns.
- Separate dbf only reading methods into a new dbfReader class (an instance of which is owned by the regular Shapefile Reader class).


## 3.0.6

### URL Downloading
Expand Down
7 changes: 7 additions & 0 deletions changelog.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
VERSION 3.0.7

2026-05-20
Testability / separation of concerns:
* Separate dbf only reading methods into a new dbfReader class (an instance of which is owned by the regular Shapefile Reader class).


VERSION 3.0.6

2026-05-19
Expand Down
3 changes: 2 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,8 @@ authors = [
{name = "Joel Lawhead", email = "jlawhead@geospatialpython.com"},
]
maintainers = [
{name = "Karim Bahgat", email = "karim.bahgat.norway@gmail.com"}
{name = "James Parrott", email = "james@jamesparrott.dev"},
{name = "Karim Bahgat", email = "karim.bahgat.norway@gmail.com"},
]
readme = "README.md"
keywords = ["gis", "geospatial", "geographic", "shapefile", "shapefiles"]
Expand Down
Loading
Loading