Skip to content

Commit

Permalink
fix: explicit re-export of href
Browse files Browse the repository at this point in the history
  • Loading branch information
gadomski committed Jun 30, 2023
1 parent 9725136 commit 0fd2df5
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 4 deletions.
11 changes: 9 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,17 @@

## [Unreleased]

## [v1.8.2] - 2023-06-30

### Fixed

- Explicitly re-export HREF from `link`

## [v1.8.1] - 2023-06-30

### Fixed

- Include jsonschemas in package
- Include jsonschemas in package ([#1181](https://github.com/stac-utils/pystac/pull/1181))

## [v1.8.0] - 2023-06-27

Expand Down Expand Up @@ -743,7 +749,8 @@ use `Band.create`

Initial release.

[Unreleased]: <https://github.com/stac-utils/pystac/compare/v1.8.1..main>
[Unreleased]: <https://github.com/stac-utils/pystac/compare/v1.8.2..main>
[v1.8.2]: <https://github.com/stac-utils/pystac/compare/v1.8.1..v1.8.2>
[v1.8.1]: <https://github.com/stac-utils/pystac/compare/v1.8.0..v1.8.1>
[v1.8.0]: <https://github.com/stac-utils/pystac/compare/v1.7.3..v1.8.0>
[v1.7.3]: <https://github.com/stac-utils/pystac/compare/v1.7.2..v1.7.3>
Expand Down
4 changes: 3 additions & 1 deletion pystac/link.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,9 @@
import pystac
from pystac.html.jinja_env import get_jinja_env
from pystac.utils import (
HREF,
HREF as HREF,
)
from pystac.utils import (
is_absolute_href,
make_absolute_href,
make_posix_style,
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.8.1"
__version__ = "1.8.2"
"""Library version"""


Expand Down

0 comments on commit 0fd2df5

Please sign in to comment.