Skip to content

Commit 987fb1a

Browse files
committed
Describe 3.1.6
1 parent 54f7b81 commit 987fb1a

3 files changed

Lines changed: 11 additions & 3 deletions

File tree

README.md

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@ The Python Shapefile Library (PyShp) reads and writes ESRI Shapefiles in pure Py
88

99
- **Author**: [Joel Lawhead](https://github.com/GeospatialPython)
1010
- **Maintainers**: [James Parrott](https://github.com/JamesParrott) & [Karim Bahgat](https://github.com/karimbahgat)
11-
- **Version**: 3.1.6.dev
12-
- **Date**: 22nd July 2026
11+
- **Version**: 3.1.6
12+
- **Date**: 25th July 2026
1313
- **License**: [MIT](https://github.com/GeospatialPython/pyshp/blob/master/LICENSE.TXT)
1414

1515
## Contents
@@ -93,6 +93,10 @@ part of your geospatial project.
9393

9494
# Version Changes
9595

96+
## 3.1.6
97+
### Feature
98+
- Encodings can now be read from .cpg files (and optionally written to them).
99+
96100
## 3.1.5
97101
### Bug fix
98102
- Fixed another bug causing dates before the year 1000 to be encoded as less than 8 chars under "%Y%m%d (found by [Thomas Beierlein](https://github.com/GeospatialPython/pyshp/issues/435))

changelog.txt

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
VERSION 3.1.6
2+
2026-07-25
3+
* Encodings can now be read from .cpg files (and optionally written to them).
4+
15
VERSION 3.1.5
26
2026-07-22
37
* Fixed another bug causing dates before the year 1000 to be encoded as less than 8 chars under "%Y%m%d (found by [Thomas Beierlein](https://github.com/GeospatialPython/pyshp/issues/435))

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

1313
import abc
1414
import array

0 commit comments

Comments
 (0)