Skip to content

Commit cafa5ab

Browse files
author
Jon Duckworth
authored
Bump library version to v1.1.0 (#583)
1 parent 3a1dde6 commit cafa5ab

File tree

2 files changed

+14
-7
lines changed

2 files changed

+14
-7
lines changed

CHANGELOG.md

+13-6
Original file line numberDiff line numberDiff line change
@@ -3,20 +3,26 @@
33
## [Unreleased]
44

55
### Added
6-
- Include type information during packaging for use with e.g. `mypy` ([#579](https://github.com/stac-utils/pystac/pull/579))
7-
- Optional `dest_href` argument to `Catalog.save` to allow saving `Catalog` instances to
8-
locations other than their `self` href ([#565](https://github.com/stac-utils/pystac/pull/565))
96

107
### Removed
118

129
### Changed
1310

14-
- Pin the rustc version in Continuous Integration to work around https://github.com/rust-lang/cargo/pull/9727 ([#581](https://github.com/stac-utils/pystac/pull/581))
15-
1611
### Fixed
1712

1813
### Deprecated
1914

15+
## [v1.1.0]
16+
17+
### Added
18+
- Include type information during packaging for use with e.g. `mypy` ([#579](https://github.com/stac-utils/pystac/pull/579))
19+
- Optional `dest_href` argument to `Catalog.save` to allow saving `Catalog` instances to
20+
locations other than their `self` href ([#565](https://github.com/stac-utils/pystac/pull/565))
21+
22+
### Changed
23+
24+
- Pin the rustc version in Continuous Integration to work around https://github.com/rust-lang/cargo/pull/9727 ([#581](https://github.com/stac-utils/pystac/pull/581))
25+
2026
## [v1.0.1]
2127

2228
### Changed
@@ -488,7 +494,8 @@ use `Band.create`
488494

489495
Initial release.
490496

491-
[Unreleased]: <https://github.com/stac-utils/pystac/compare/v1.0.1..main>
497+
[Unreleased]: <https://github.com/stac-utils/pystac/compare/v1.1.0..main>
498+
[v1.1.0]: <https://github.com/stac-utils/pystac/compare/v1.0.1..v1.1.0>
492499
[v1.0.1]: <https://github.com/stac-utils/pystac/compare/v1.0.0..v1.0.1>
493500
[v1.0.0]: <https://github.com/stac-utils/pystac/compare/v1.0.0-rc.3..v1.0.0>
494501
[v1.0.0-rc.3]: <https://github.com/stac-utils/pystac/compare/v1.0.0-rc.2..v1.0.0-rc.3>

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.0.1"
4+
__version__ = "1.1.0"
55
"""Library version"""
66

77

0 commit comments

Comments
 (0)