Skip to content

Commit

Permalink
release: v1.7.3
Browse files Browse the repository at this point in the history
Includes a backport fix for #1085.
  • Loading branch information
gadomski committed Apr 26, 2023
1 parent 71f1708 commit 0496011
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
5 changes: 4 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@

## [Unreleased]

## [v1.7.3]

### Fixed

- Duplicate `self` links in Items ([#1103](https://github.com/stac-utils/pystac/pull/1103))
Expand Down Expand Up @@ -680,7 +682,8 @@ use `Band.create`

Initial release.

[Unreleased]: <https://github.com/stac-utils/pystac/compare/v1.7.2..main>
[Unreleased]: <https://github.com/stac-utils/pystac/compare/v1.7.3..main>
[v1.7.3]: <https://github.com/stac-utils/pystac/compare/v1.7.2..v1.7.3>
[v1.7.2]: <https://github.com/stac-utils/pystac/compare/v1.7.1..v1.7.2>
[v1.7.1]: <https://github.com/stac-utils/pystac/compare/v1.7.0..v1.7.1>
[v1.7.0]: <https://github.com/stac-utils/pystac/compare/v1.6.1..v1.7.0>
Expand Down
2 changes: 1 addition & 1 deletion pystac/version.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import os
from typing import Optional

__version__ = "1.7.2"
__version__ = "1.7.3"
"""Library version"""


Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
author="stac-utils",
author_email="[email protected]",
url="https://github.com/stac-utils/pystac",
packages=find_packages(exclude=["tests*"]),
packages=find_packages(exclude=["tests*", "benchmarks*"]),
package_data={"": ["py.typed", "*.jinja2"]},
py_modules=[splitext(basename(path))[0] for path in glob("pystac/*.py")],
python_requires=">=3.8",
Expand Down

0 comments on commit 0496011

Please sign in to comment.