diff --git a/CHANGELOG.md b/CHANGELOG.md index fa66f48..9ff2ff7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,11 +7,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] -## Added + +## [0.6.0] - 2026-02-03 + +### Added - `print()` method now supports the `file` argument - `as_json()` and `as_text()` methods -## Fixed +### Fixed - `SubFile` methods `readinto`, `readline`, and `readlines` now terminate at the end of the subfile @@ -100,7 +103,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Basic JBP functionality copied from SARkit's `_nitf_io.py` - TRE support: SECTGA -[unreleased]: https://github.com/ValkyrieSystems/jbpy/compare/v0.5.1...HEAD +[unreleased]: https://github.com/ValkyrieSystems/jbpy/compare/v0.6.0...HEAD +[0.6.0]: https://github.com/ValkyrieSystems/jbpy/compare/v0.5.1...v0.6.0 [0.5.1]: https://github.com/ValkyrieSystems/jbpy/compare/v0.5.0...v0.5.1 [0.5.0]: https://github.com/ValkyrieSystems/jbpy/compare/v0.4.0...v0.5.0 [0.4.0]: https://github.com/ValkyrieSystems/jbpy/compare/v0.3.0...v0.4.0 diff --git a/README.md b/README.md index ad0a84c..6905f89 100644 --- a/README.md +++ b/README.md @@ -5,6 +5,7 @@ [![SPEC 0 — Minimum Supported Dependencies](https://img.shields.io/badge/SPEC-0-green?labelColor=%23004811&color=%235CA038)](https://scientific-python.org/specs/spec-0000/)
[![Tests](https://github.com/ValkyrieSystems/jbpy/actions/workflows/test.yml/badge.svg)](https://github.com/ValkyrieSystems/jbpy/actions/workflows/test.yml) +[![Documentation Status](https://readthedocs.org/projects/jbpy/badge/?version=latest)](https://jbpy.readthedocs.io/en/latest/?badge=latest) **jbpy** is a library for reading and writing Joint BIIF Profile files. Including: diff --git a/pyproject.toml b/pyproject.toml index 16a24e8..50ce266 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -69,6 +69,7 @@ docs = [ ] [project.urls] +Documentation = "https://jbpy.readthedocs.io/" Repository = "https://github.com/ValkyrieSystems/jbpy" "Bug Tracker" = "https://github.com/ValkyrieSystems/jbpy/issues" Changelog = "https://github.com/ValkyrieSystems/jbpy/blob/main/CHANGELOG.md"