Skip to content

Commit 76ef6a3

Browse files
authored
Merge pull request #567 from stac-utils/release/v1.0.0
Bump to v1.0.0
2 parents fcfb662 + 1c2b948 commit 76ef6a3

File tree

2 files changed

+15
-6
lines changed

2 files changed

+15
-6
lines changed

CHANGELOG.md

Lines changed: 14 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,18 @@
44

55
### Added
66

7+
### Removed
8+
9+
### Changed
10+
11+
### Deprecated
12+
13+
### Fixed
14+
15+
## [v1.0.0]
16+
17+
### Added
18+
719
- `ProjectionExtension.crs_string` to provide a single string to describe the coordinate reference system (CRS).
820
Useful because projections can be defined by EPSG code, WKT, or projjson.
921
([#548](https://github.com/stac-utils/pystac/pull/548))
@@ -20,8 +32,6 @@
2032
- `to_dict` and equality definition for `extensions.item_asset.AssetDefinition` ([#564](https://github.com/stac-utils/pystac/pull/564))
2133
- `Asset.common_metadata` property ([#563](https://github.com/stac-utils/pystac/pull/563))
2234

23-
### Removed
24-
2535
### Changed
2636

2737
- The `from_dict` method on STACObjects will set the object's root link when a `root` parameter is present. An ItemCollection `from_dict` with a root parameter will set the root on each of it's Items. ([#549](https://github.com/stac-utils/pystac/pull/549))
@@ -41,8 +51,6 @@
4151
- Fixed type annotation on SummariesLabelExtension.label_properties setter ([#562](https://github.com/stac-utils/pystac/pull/562))
4252
- Allow comparable types with alternate parameter naming of __lt__ method to pass structural type linting for RangeSummary ([#562](https://github.com/stac-utils/pystac/pull/562))
4353

44-
### Deprecated
45-
4654
## [v1.0.0-rc.3]
4755

4856
### Added
@@ -469,7 +477,8 @@ use `Band.create`
469477

470478
Initial release.
471479

472-
[Unreleased]: <https://github.com/stac-utils/pystac/compare/v1.0.0-rc.3..main>
480+
[Unreleased]: <https://github.com/stac-utils/pystac/compare/v1.0.0..main>
481+
[v1.0.0]: <https://github.com/stac-utils/pystac/compare/v1.0.0-rc.3..v1.0.0>
473482
[v1.0.0-rc.3]: <https://github.com/stac-utils/pystac/compare/v1.0.0-rc.2..v1.0.0-rc.3>
474483
[v1.0.0-rc.2]: <https://github.com/stac-utils/pystac/compare/v1.0.0-rc.1..v1.0.0-rc.2>
475484
[v1.0.0-rc.1]: <https://github.com/stac-utils/pystac/compare/v1.0.0-beta.3..v1.0.0-rc.1>

pystac/version.py

Lines changed: 1 addition & 1 deletion
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.0-rc.3"
4+
__version__ = "1.0.0"
55
"""Library version"""
66

77

0 commit comments

Comments
 (0)