Skip to content

Commit 5158a4c

Browse files
authored
Merge pull request #347 from stac-utils/version/1.0.0-beta.1
Version 1.0.0-beta.1
2 parents 52f3641 + e999a07 commit 5158a4c

File tree

142 files changed

+18784
-18804
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

142 files changed

+18784
-18804
lines changed

CHANGELOG.md

Lines changed: 20 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,14 @@
11
# Changelog
22

3-
## unreleased
3+
## [Unreleased]
4+
5+
### Added
6+
7+
### Changed
8+
9+
### Remove
10+
11+
## [1.0.0-beta.1]
412

513
### Added
614

@@ -287,18 +295,19 @@ use `Band.create`
287295

288296
Initial release.
289297

290-
[Unreleased]: <https://github.com/stac-utils/pystac/compare/v0.5.6...main>
298+
[Unreleased]: <https://github.com/stac-utils/pystac/compare/v1.0.0-beta.1..main>
299+
[v1.0.0-beta.1]: <https://github.com/stac-utils/pystac/compare/v0.5.6..v1.0.0-beta.1>
291300
[v0.5.6]: <https://github.com/stac-utils/pystac/compare/v0.5.5..v0.5.6>
292301
[v0.5.5]: <https://github.com/stac-utils/pystac/compare/v0.5.4..v0.5.5>
293302
[v0.5.4]: <https://github.com/stac-utils/pystac/compare/v0.5.3..v0.5.4>
294-
[v0.5.3]: <https://github.com/stac-utils/pystac/compare/v0.5.2...v0.5.3>
295-
[v0.5.2]: <https://github.com/stac-utils/pystac/compare/v0.5.1...v0.5.2>
296-
[v0.5.1]: <https://github.com/stac-utils/pystac/compare/v0.5.0...v0.5.1>
297-
[v0.5.0]: <https://github.com/stac-utils/pystac/compare/v0.4.0...v0.5.0>
298-
[v0.4.0]: <https://github.com/stac-utils/pystac/compare/v0.3.4...v0.4.0>
299-
[v0.3.4]: <https://github.com/stac-utils/pystac/compare/v0.3.3...v0.3.4>
300-
[v0.3.3]: <https://github.com/stac-utils/pystac/compare/v0.3.2...v0.3.3>
301-
[v0.3.2]: <https://github.com/stac-utils/pystac/compare/v0.3.1...v0.3.2>
302-
[v0.3.1]: <https://github.com/stac-utils/pystac/compare/v0.3.0...v0.3.1>
303+
[v0.5.3]: <https://github.com/stac-utils/pystac/compare/v0.5.2..v0.5.3>
304+
[v0.5.2]: <https://github.com/stac-utils/pystac/compare/v0.5.1..v0.5.2>
305+
[v0.5.1]: <https://github.com/stac-utils/pystac/compare/v0.5.0..v0.5.1>
306+
[v0.5.0]: <https://github.com/stac-utils/pystac/compare/v0.4.0..v0.5.0>
307+
[v0.4.0]: <https://github.com/stac-utils/pystac/compare/v0.3.4..v0.4.0>
308+
[v0.3.4]: <https://github.com/stac-utils/pystac/compare/v0.3.3..v0.3.4>
309+
[v0.3.3]: <https://github.com/stac-utils/pystac/compare/v0.3.2..v0.3.3>
310+
[v0.3.2]: <https://github.com/stac-utils/pystac/compare/v0.3.1..v0.3.2>
311+
[v0.3.1]: <https://github.com/stac-utils/pystac/compare/v0.3.0..v0.3.1>
303312
[v0.3.0]: <https://github.com/stac-utils/pystac/tree/v0.3.0>
304313

README.md

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,8 @@ The table below shows the corresponding versions between pystac and STAC:
4444

4545
| pystac | STAC |
4646
| ------ | ----- |
47-
| 0.5.x | 1.0.x |
47+
| 1.x | 1.0.x |
48+
| 0.5.x | 1.0.0-beta.* |
4849
| 0.4.x | 0.9.x |
4950
| 0.3.x | 0.8.x |
5051

@@ -114,11 +115,11 @@ To build and develop the documentation locally, make sure sphinx is available (w
114115
> make livehtml
115116
```
116117

117-
> Note: You will see some warnings along the lines of
118+
> Note: You will see some warnings along the lines of
118119
> ```
119-
> WARNING: duplicate object description of pystac.Collection.id,
120+
> WARNING: duplicate object description of pystac.Collection.id,
120121
> other instance in api, use :noindex: for one of them
121-
> ```
122+
> ```
122123
> for some of the
123124
> classes. This is expected due to [sphinx-doc/sphinx#8664](https://github.com/sphinx-doc/sphinx/issues/8664).
124125

pystac/version.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
import os
22
from typing import Optional
33

4-
__version__ = "0.5.6"
4+
__version__ = "1.0.0-beta.1"
55
"""Library version"""
66

77

88
class STACVersion:
9-
DEFAULT_STAC_VERSION = "1.0.0-rc.3"
9+
DEFAULT_STAC_VERSION = "1.0.0-rc.4"
1010
"""Latest STAC version supported by PySTAC"""
1111

1212
# Version that holds a user-set STAC version to use.

tests/data-files/catalogs/cbers-partial/CBERS4AWFI/collection.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"type": "Collection",
33
"id": "CBERS4AWFI",
4-
"stac_version": "1.0.0-rc.3",
4+
"stac_version": "1.0.0-rc.4",
55
"description": "CBERS4 AWFI camera catalog",
66
"links": [
77
{

tests/data-files/catalogs/cbers-partial/CBERS4MUX/collection.json

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"type": "Collection",
33
"id": "CBERS4MUX",
4-
"stac_version": "1.0.0-rc.3",
4+
"stac_version": "1.0.0-rc.4",
55
"description": "CBERS4 MUX camera catalog",
66
"links": [
77
{
@@ -16,8 +16,7 @@
1616
}
1717
],
1818
"stac_extensions": [
19-
"eo",
20-
"item-assets"
19+
"https://stac-extensions.github.io/item-assets/v1.0.0/schema.json"
2120
],
2221
"providers": [
2322
{

tests/data-files/catalogs/cbers-partial/CBERS4PAN10M/collection.json

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"type": "Collection",
33
"id": "CBERS4PAN10M",
4-
"stac_version": "1.0.0-rc.3",
4+
"stac_version": "1.0.0-rc.4",
55
"description": "CBERS4 PAN10M camera catalog",
66
"links": [
77
{
@@ -16,8 +16,7 @@
1616
}
1717
],
1818
"stac_extensions": [
19-
"eo",
20-
"item-assets"
19+
"https://stac-extensions.github.io/item-assets/v1.0.0/schema.json"
2120
],
2221
"providers": [
2322
{

tests/data-files/catalogs/cbers-partial/CBERS4PAN5M/collection.json

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"type": "Collection",
33
"id": "CBERS4PAN5M",
4-
"stac_version": "1.0.0-rc.3",
4+
"stac_version": "1.0.0-rc.4",
55
"description": "CBERS4 PAN5M camera catalog",
66
"links": [
77
{
@@ -16,8 +16,7 @@
1616
}
1717
],
1818
"stac_extensions": [
19-
"eo",
20-
"item-assets"
19+
"https://stac-extensions.github.io/item-assets/v1.0.0/schema.json"
2120
],
2221
"providers": [
2322
{

tests/data-files/catalogs/cbers-partial/catalog.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"type": "Catalog",
33
"id": "CBERS4",
4-
"stac_version": "1.0.0-rc.3",
4+
"stac_version": "1.0.0-rc.4",
55
"description": "Catalogs of CBERS-4 mission's imagery on AWS",
66
"links": [
77
{

tests/data-files/catalogs/test-case-1/catalog.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"type": "Catalog",
33
"id": "test",
4-
"stac_version": "1.0.0-rc.3",
4+
"stac_version": "1.0.0-rc.4",
55
"description": "test catalog",
66
"links": [
77
{
Lines changed: 65 additions & 65 deletions
Original file line numberDiff line numberDiff line change
@@ -1,70 +1,70 @@
11
{
2-
"type": "Feature",
3-
"stac_version": "1.0.0-rc.3",
4-
"id": "area-1-1-imagery",
5-
"properties": {
6-
"datetime": "2019-10-04T18:55:37Z"
7-
},
8-
"geometry": {
9-
"type": "Polygon",
10-
"coordinates": [
11-
[
12-
[
13-
-2.5048828125,
14-
3.8916575492899987
15-
],
16-
[
17-
-1.9610595703125,
18-
3.8916575492899987
19-
],
20-
[
21-
-1.9610595703125,
22-
4.275202171119132
23-
],
24-
[
25-
-2.5048828125,
26-
4.275202171119132
27-
],
28-
[
29-
-2.5048828125,
30-
3.8916575492899987
31-
]
32-
]
2+
"type": "Feature",
3+
"stac_version": "1.0.0-rc.4",
4+
"id": "area-1-1-imagery",
5+
"properties": {
6+
"datetime": "2019-10-04T18:55:37Z"
7+
},
8+
"geometry": {
9+
"type": "Polygon",
10+
"coordinates": [
11+
[
12+
[
13+
-2.5048828125,
14+
3.8916575492899987
15+
],
16+
[
17+
-1.9610595703125,
18+
3.8916575492899987
19+
],
20+
[
21+
-1.9610595703125,
22+
4.275202171119132
23+
],
24+
[
25+
-2.5048828125,
26+
4.275202171119132
27+
],
28+
[
29+
-2.5048828125,
30+
3.8916575492899987
3331
]
32+
]
33+
]
34+
},
35+
"links": [
36+
{
37+
"rel": "collection",
38+
"href": "../collection.json",
39+
"type": "application/json"
40+
},
41+
{
42+
"rel": "root",
43+
"href": "../../../catalog.json",
44+
"type": "application/json"
3445
},
35-
"links": [
36-
{
37-
"rel": "collection",
38-
"href": "../collection.json",
39-
"type": "application/json"
40-
},
41-
{
42-
"rel": "root",
43-
"href": "../../../catalog.json",
44-
"type": "application/json"
45-
},
46-
{
47-
"rel": "parent",
48-
"href": "../collection.json",
49-
"type": "application/json"
50-
}
51-
],
52-
"assets": {
53-
"ortho": {
54-
"href": "http://example.com/area-1-1_ortho.tif",
55-
"type": "image/vnd.stac.geotiff"
56-
},
57-
"dsm": {
58-
"href": "http://example.com/area-1-1_dsm.tif",
59-
"type": "image/vnd.stac.geotiff"
60-
}
46+
{
47+
"rel": "parent",
48+
"href": "../collection.json",
49+
"type": "application/json"
50+
}
51+
],
52+
"assets": {
53+
"ortho": {
54+
"href": "http://example.com/area-1-1_ortho.tif",
55+
"type": "image/vnd.stac.geotiff"
6156
},
62-
"bbox": [
63-
-2.5048828125,
64-
3.8916575492899987,
65-
-1.9610595703125,
66-
3.8916575492899987
67-
],
68-
"stac_extensions": [],
69-
"collection": "area-1-1"
57+
"dsm": {
58+
"href": "http://example.com/area-1-1_dsm.tif",
59+
"type": "image/vnd.stac.geotiff"
60+
}
61+
},
62+
"bbox": [
63+
-2.5048828125,
64+
3.8916575492899987,
65+
-1.9610595703125,
66+
3.8916575492899987
67+
],
68+
"stac_extensions": [],
69+
"collection": "area-1-1"
7070
}

0 commit comments

Comments
 (0)