Skip to content

Commit 0369cfb

Browse files
committed
bump version number to 1.2.1
1 parent 9340a9b commit 0369cfb

File tree

3 files changed

+19
-3
lines changed

3 files changed

+19
-3
lines changed

docs/version_history.md

Lines changed: 17 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,22 @@
11
# Version History
2+
## [1.2.1] - 2024-09-18
23
### Added
34

5+
#### Features
6+
- Full compatibility with numpy 2.0 for pds4 products
7+
(pds3 products already compatible in last release)
8+
9+
### Changed
10+
- `pds4_tools` is now vendored within `pdr` to apply changes for numpy 2.0
11+
compatibility and avoid hot patches
12+
13+
### Removed
14+
- `pds4_tools` dependency
15+
- `_patches` module
16+
417
## [1.2.0] - 2024-09-18
18+
### Added
19+
520
#### Features
621
- Compatibility with numpy 2.0 for pds3 products and fits pds4 products
722
(non-fits PDS4 product numpy 2.0 compatibility awaits changes in
@@ -11,6 +26,7 @@
1126
[see issue #57](https://github.com/MillionConcepts/pdr/issues/57)
1227
- Unit tests are now backed by `pytest` fixtures for improved flexibility and
1328
compatibility
29+
- ROW_PREFIX_BYTES are now accounted for when calculating offset positions
1430

1531
#### Dataset Support
1632
- Galileo NIMS qubes
@@ -79,7 +95,7 @@ compatibility
7995
- The hotpatch for `pds4-tools` Python 3.12 incompatibility no longer
8096
has persistent side effects; for instance, `conda` will no longer
8197
complain about checksum mismatches.
82-
- bug reading PDS4-labeled FITS files
98+
- Bug reading PDS4-labeled FITS files
8399

84100
### Removed
85101
- `pdr.Data.__iter__` method is being deprecated

pdr/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
if TYPE_CHECKING:
99
from pathlib import Path
1010

11-
__version__ = "1.2.0"
11+
__version__ = "1.2.1"
1212

1313
pkg_dir = _osp.abspath(_osp.dirname(__file__))
1414

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
[project]
66
name = "pdr"
7-
version = "1.2.0"
7+
version = "1.2.1"
88
description = "Planetary Data Reader"
99
readme = "README.md"
1010
license = { file = "LICENSE.md" }

0 commit comments

Comments
 (0)