Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 6ea8ddb

Browse files
committedJun 30, 2023·
fix: explicit re-export of href
1 parent 9725136 commit 6ea8ddb

File tree

3 files changed

+13
-4
lines changed

3 files changed

+13
-4
lines changed
 

‎CHANGELOG.md

+9-2
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,17 @@
22

33
## [Unreleased]
44

5+
## [v1.8.2] - 2023-06-30
6+
7+
### Fixed
8+
9+
- Explicitly re-export HREF from `link` ([#1182](https://github.com/stac-utils/pystac/pull/1182))
10+
511
## [v1.8.1] - 2023-06-30
612

713
### Fixed
814

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

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

@@ -743,7 +749,8 @@ use `Band.create`
743749

744750
Initial release.
745751

746-
[Unreleased]: <https://github.com/stac-utils/pystac/compare/v1.8.1..main>
752+
[Unreleased]: <https://github.com/stac-utils/pystac/compare/v1.8.2..main>
753+
[v1.8.2]: <https://github.com/stac-utils/pystac/compare/v1.8.1..v1.8.2>
747754
[v1.8.1]: <https://github.com/stac-utils/pystac/compare/v1.8.0..v1.8.1>
748755
[v1.8.0]: <https://github.com/stac-utils/pystac/compare/v1.7.3..v1.8.0>
749756
[v1.7.3]: <https://github.com/stac-utils/pystac/compare/v1.7.2..v1.7.3>

‎pystac/link.py

+3-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,9 @@
88
import pystac
99
from pystac.html.jinja_env import get_jinja_env
1010
from pystac.utils import (
11-
HREF,
11+
HREF as HREF,
12+
)
13+
from pystac.utils import (
1214
is_absolute_href,
1315
make_absolute_href,
1416
make_posix_style,

‎pystac/version.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import os
22
from typing import Optional
33

4-
__version__ = "1.8.1"
4+
__version__ = "1.8.2"
55
"""Library version"""
66

77

0 commit comments

Comments
 (0)
Please sign in to comment.