Skip to content

Commit 67bf03e

Browse files
authored
Merge pull request #10 from hmallen/codex/prepare-release-files-for-numpyencoder-0.3.2
Release 0.3.2
2 parents 2c6a4b1 + d57b778 commit 67bf03e

File tree

3 files changed

+27
-0
lines changed

3 files changed

+27
-0
lines changed

CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
# Changelog
2+
3+
All notable changes to this project will be documented in this file.
4+
5+
## [0.3.2] - 2025-07-14
6+
### Added
7+
- Support for Numpy 2.x deprecations. Complex and float types are
8+
detected based on the installed Numpy version.
9+
- Explicit dependency on the `packaging` module.
10+

README.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,3 +20,10 @@ with open(json_file, 'w') as file:
2020
cls=NumpyEncoder
2121
)
2222
```
23+
24+
## Installation
25+
26+
```
27+
pip install numpyencoder==0.3.2
28+
```
29+

numpyencoder/__init__.py

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,11 @@
1+
"""Top level package for ``numpyencoder``.
2+
3+
Exposes :class:`~numpyencoder.numpyencoder.NumpyEncoder` for convenient
4+
imports and defines the package ``__version__``.
5+
"""
6+
17
from .numpyencoder import NumpyEncoder
8+
9+
__version__ = "0.3.2"
10+
11+
__all__ = ["NumpyEncoder", "__version__"]

0 commit comments

Comments
 (0)