diff --git a/.github/pull_request_template.md b/.github/pull_request_template.md new file mode 100644 index 0000000..1341cb6 --- /dev/null +++ b/.github/pull_request_template.md @@ -0,0 +1,12 @@ +**Related Issue(s):** + +- # + +**Proposed Changes:** + +1. +2. + +**PR Checklist:** + +- [ ] I have added my changes to the [CHANGELOG](https://github.com/stactools/naip/blob/main/CHANGELOG.md) **or** a CHANGELOG entry is not required. diff --git a/.github/workflows/continuous-integration.yml b/.github/workflows/continuous-integration.yml index b039f2d..911617d 100644 --- a/.github/workflows/continuous-integration.yml +++ b/.github/workflows/continuous-integration.yml @@ -29,7 +29,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - python-version: ["3.8", "3.9", "3.10"] + python-version: ["3.8", "3.9", "3.10", "3.11"] defaults: run: shell: bash -l {0} diff --git a/CHANGELOG.md b/CHANGELOG.md index 16ac2bb..1f8c7d4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,9 +6,21 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/). ## [Unreleased] +## [0.3.0] - 2023-02-16 + +### Changed + +- Scientific Extension fields are now in the Collection rather than the Item. + +### Fixed + +- Certain XML files for 2020 have different fields, which are now processed correctly instead + generating an error. + ## [0.2.0] - 2023-01-31 First release as a stand-alone repository. -[Unreleased]: https://github.com/stactools-packages/naip/compare/v0.2.0..main +[Unreleased]: https://github.com/stactools-packages/naip/compare/v0.3.0..main +[0.3.0]: https://github.com/stactools-packages/naip/tags/v0.3.0 [0.2.0]: https://github.com/stactools-packages/naip/tags/v0.2.0 \ No newline at end of file diff --git a/setup.cfg b/setup.cfg index 511cfbb..e2a4756 100644 --- a/setup.cfg +++ b/setup.cfg @@ -21,6 +21,7 @@ classifiers = Programming Language :: Python :: 3.8 Programming Language :: Python :: 3.9 Programming Language :: Python :: 3.10 + Programming Language :: Python :: 3.11 [options] python_requires = >=3.8 diff --git a/src/stactools/naip/__init__.py b/src/stactools/naip/__init__.py index 60bc35b..1e0b65d 100644 --- a/src/stactools/naip/__init__.py +++ b/src/stactools/naip/__init__.py @@ -13,4 +13,4 @@ def register_plugin(registry): registry.register_subcommand(commands.create_naip_command) -__version__ = "0.2.0" +__version__ = "0.3.0"