Skip to content

Commit bd6f661

Browse files
authored
Update version to 2.0.0 (#195)
* Fix publish script * Change versions to 2.0.0 * Update CHANGELOG
1 parent 5060501 commit bd6f661

File tree

7 files changed

+14
-14
lines changed

7 files changed

+14
-14
lines changed

CHANGES.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
## UNRELEASED
22

3+
## 2.0.0 (2021-07)
4+
5+
* Refactor stac-fastapi into submodules (https://github.com/stac-utils/stac-fastapi/pull/106)
6+
* Add pgstac backend (https://github.com/stac-utils/stac-fastapi/pull/126)
37
* Upgrade to stac-pydantic 2.0.0 and stac-spec 1.0.0 (https://github.com/stac-utils/stac-fastapi/pull/181)
48

59
## 1.1.0 (2021-01-28)

scripts/publish

Lines changed: 5 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,11 @@ fi
88

99
# Import shared variables
1010
SUBPACKAGE_DIRS=(
11-
"stac_fastapi_types"
12-
"stac_fastapi_extensions"
13-
"stac_fastapi_api"
14-
"stac_fastapi_postgres"
15-
"stac_fastapi_server"
11+
"stac_fastapi/types"
12+
"stac_fastapi/extensions"
13+
"stac_fastapi/api"
14+
"stac_fastapi/sqlalchemy"
15+
"stac_fastapi/pgstac"
1616
)
1717

1818
function usage() {
@@ -69,8 +69,4 @@ if [ "${BASH_SOURCE[0]}" = "${0}" ]; then
6969
popd
7070

7171
done
72-
73-
rm -rf dist
74-
python setup.py sdist bdist_wheel
75-
twine upload ${TEST_PYPI} dist/*
7672
fi
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
"""library version."""
2-
__version__ = "1.1.0"
2+
__version__ = "2.0.0"
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
"""library version."""
2-
__version__ = "1.1.0"
2+
__version__ = "2.0.0"
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
"""library version."""
2-
__version__ = "0.1.0"
2+
__version__ = "2.0.0"
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
"""library version."""
2-
__version__ = "1.1.0"
2+
__version__ = "2.0.0"
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
"""library version."""
2-
__version__ = "1.1.0"
2+
__version__ = "2.0.0"

0 commit comments

Comments
 (0)