Skip to content

Commit c8ee7d6

Browse files
author
Jon Duckworth
authored
Merge pull request #456 from stac-utils/release/1.0.0-rc.1
Version 1.0.0-rc.1
2 parents 73a9126 + 1d79b41 commit c8ee7d6

File tree

2 files changed

+20
-6
lines changed

2 files changed

+20
-6
lines changed

CHANGELOG.md

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

55
### Added
66

7+
### Changed
8+
9+
### Fixed
10+
11+
### Removed
12+
13+
### Deprecated
14+
15+
## [v1.0.0-rc.1]
16+
17+
### Added
18+
719
- License file included in distribution ([#409](https://github.com/stac-utils/pystac/pull/409))
820
- Links to Issues, Discussions, and documentation sites ([#409](https://github.com/stac-utils/pystac/pull/409))
921
- Python minimum version set to `>=3.6` ([#409](https://github.com/stac-utils/pystac/pull/409))
@@ -14,6 +26,7 @@
1426
- Migration for pre-1.0.0-rc.1 Stats Objects (renamed to Range Objects in 1.0.0-rc.3) ([#447](https://github.com/stac-utils/pystac/pull/447))
1527
- Attempting to extend a `STACObject` that does not contain the extension's schema URI in
1628
`stac_extensions` raises new `ExtensionNotImplementedError` ([#450](https://github.com/stac-utils/pystac/pull/450))
29+
- `STACObject.from_dict` now takes a `preserve_dict` parameter, which if False will avoid a call to deepcopy on the passed in dict and can result in performance gains (defaults to True. Reading from a file will use preserve_dict=False resulting in better performance. ([#454](https://github.com/stac-utils/pystac/pull/454))
1730

1831
### Changed
1932

@@ -25,6 +38,8 @@
2538
- `*Extension.ext` methods now have an optional `add_if_missing` argument, which will
2639
add the extension schema URI to the object's `stac_extensions` list if it is not
2740
present ([#450](https://github.com/stac-utils/pystac/pull/450))
41+
- `from_file` and `from_dict` methods on `STACObject` sub-classes always return instance
42+
of calling class ([#451](https://github.com/stac-utils/pystac/pull/451))
2843

2944
### Fixed
3045

@@ -37,9 +52,7 @@
3752
([#455](https://github.com/stac-utils/pystac/pull/455))
3853
- Schema URI base for STAC 1.0.0-beta.1 ([#455](https://github.com/stac-utils/pystac/pull/455))
3954

40-
### Removed
41-
42-
## [1.0.0-beta.3]
55+
## [v1.0.0-beta.3]
4356

4457
### Added
4558

@@ -60,7 +73,7 @@
6073

6174
- Two v0.6.0 examples from the test suite ([#373](https://github.com/stac-utils/pystac/pull/373))
6275

63-
## [1.0.0-beta.2]
76+
## [v1.0.0-beta.2]
6477

6578
### Changed
6679

@@ -368,7 +381,8 @@ use `Band.create`
368381

369382
Initial release.
370383

371-
[Unreleased]: <https://github.com/stac-utils/pystac/compare/v1.0.0-beta.3..main>
384+
[Unreleased]: <https://github.com/stac-utils/pystac/compare/v1.0.0-rc.1..main>
385+
[v1.0.0-rc.1]: <https://github.com/stac-utils/pystac/compare/v1.0.0-beta.3..v1.0.0-rc.1>
372386
[v1.0.0-beta.3]: <https://github.com/stac-utils/pystac/compare/v1.0.0-beta.2..v1.0.0-beta.3>
373387
[v1.0.0-beta.2]: <https://github.com/stac-utils/pystac/compare/v1.0.0-beta.1..v1.0.0-beta.2>
374388
[v1.0.0-beta.1]: <https://github.com/stac-utils/pystac/compare/v0.5.6..v1.0.0-beta.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-beta.3"
4+
__version__ = "1.0.0-rc.1"
55
"""Library version"""
66

77

0 commit comments

Comments
 (0)