Skip to content

Commit

Permalink
Merge pull request #34 from stactools-packages/pv/release-prep-v0.3.0
Browse files Browse the repository at this point in the history
prep for 0.3.0 release
  • Loading branch information
Phil Varner authored Feb 16, 2023
2 parents 3f08105 + d838005 commit 8804095
Show file tree
Hide file tree
Showing 5 changed files with 28 additions and 3 deletions.
12 changes: 12 additions & 0 deletions .github/pull_request_template.md
Original file line number Diff line number Diff line change
@@ -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.
2 changes: 1 addition & 1 deletion .github/workflows/continuous-integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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}
Expand Down
14 changes: 13 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
1 change: 1 addition & 0 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion src/stactools/naip/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,4 @@ def register_plugin(registry):
registry.register_subcommand(commands.create_naip_command)


__version__ = "0.2.0"
__version__ = "0.3.0"

0 comments on commit 8804095

Please sign in to comment.