Skip to content

Commit ae48c65

Browse files
committed
PySTAC version 1.0.0-rc.2
1 parent 3f82170 commit ae48c65

File tree

2 files changed

+16
-9
lines changed

2 files changed

+16
-9
lines changed

CHANGELOG.md

Lines changed: 15 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,21 @@
44

55
### Added
66

7+
### Changed
8+
9+
### Fixed
10+
11+
### Removed
12+
13+
### Deprecated
14+
15+
## [v1.0.0-rc.2]
16+
17+
### Added
18+
719
- Add a `preserve_dict` parameter to `ItemCollection.from_dict` and set it to False when
820
using `ItemCollection.from_file`.
9-
([#468](https://github.com/stac-utils/pystac/pull/468))
21+
([#468](https://github.com/stac-utils/pystac/pull/468))
1022
- `StacIO.json_dumps` and `StacIO.json_loads` methods for JSON
1123
serialization/deserialization. These were "private" methods, but are now "public" and
1224
documented ([#471](https://github.com/stac-utils/pystac/pull/471))
@@ -16,12 +28,6 @@
1628
- `pystac.stac_io.DuplicateObjectKeyError` moved to `pystac.DuplicateObjectKeyError`
1729
([#471](https://github.com/stac-utils/pystac/pull/471))
1830

19-
### Fixed
20-
21-
### Removed
22-
23-
### Deprecated
24-
2531
## [v1.0.0-rc.1]
2632

2733
### Added
@@ -391,7 +397,8 @@ use `Band.create`
391397

392398
Initial release.
393399

394-
[Unreleased]: <https://github.com/stac-utils/pystac/compare/v1.0.0-rc.1..main>
400+
[Unreleased]: <https://github.com/stac-utils/pystac/compare/v1.0.0-rc.2..main>
401+
[v1.0.0-rc.2]: <https://github.com/stac-utils/pystac/compare/v1.0.0-rc.1..v1.0.0-rc.2>
395402
[v1.0.0-rc.1]: <https://github.com/stac-utils/pystac/compare/v1.0.0-beta.3..v1.0.0-rc.1>
396403
[v1.0.0-beta.3]: <https://github.com/stac-utils/pystac/compare/v1.0.0-beta.2..v1.0.0-beta.3>
397404
[v1.0.0-beta.2]: <https://github.com/stac-utils/pystac/compare/v1.0.0-beta.1..v1.0.0-beta.2>

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.1"
4+
__version__ = "1.0.0-rc.2"
55
"""Library version"""
66

77

0 commit comments

Comments
 (0)