Skip to content

Commit fc31897

Browse files
committed
release: v0.1.0
1 parent c87446e commit fc31897

File tree

4 files changed

+24
-5
lines changed

4 files changed

+24
-5
lines changed

.pre-commit-config.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
repos:
22
- repo: https://github.com/psf/black
3-
rev: 23.3.0
3+
rev: 23.7.0
44
hooks:
55
- id: black
66
- repo: https://github.com/pre-commit/mirrors-mypy
@@ -13,6 +13,6 @@ repos:
1313
- pytest
1414
- types-aiofiles
1515
- repo: https://github.com/charliermarsh/ruff-pre-commit
16-
rev: "v0.0.277"
16+
rev: "v0.0.278"
1717
hooks:
1818
- id: ruff

CHANGELOG.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,11 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66

77
## [Unreleased]
88

9+
## [0.1.0] - 2023-07-12
10+
11+
First release at the new location, <https://github.com/stac-utils/stac-asset>.
12+
Used to be <https://github.com/gadomski/stac-asset>.
13+
914
## [0.0.4] - 2023-06-09
1015

1116
### Added
@@ -53,7 +58,8 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
5358

5459
Initial release.
5560

56-
[unreleased]: https://github.com/stac-utils/stac-asset/compare/v0.0.4...HEAD
61+
[unreleased]: https://github.com/stac-utils/stac-asset/compare/v0.1.0...HEAD
62+
[0.1.0]: https://github.com/stac-utils/stac-asset/compare/v0.0.4...v0.1.0
5763
[0.0.4]: https://github.com/stac-utils/stac-asset/compare/v0.0.3...v0.0.4
5864
[0.0.3]: https://github.com/stac-utils/stac-asset/compare/v0.0.2...v0.0.3
5965
[0.0.2]: https://github.com/stac-utils/stac-asset/compare/v0.0.1...v0.0.2

RELEASING.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
# Releasing
2+
3+
1. Determine the next version. Try to follow [semantic versioning](https://semver.org/).
4+
Our public API is described in [the README](./README.md#versioning)
5+
2. Create a branch named `release/vX.Y.Z`.
6+
3. Update:
7+
- The version in [pyproject.toml](./pyproject.toml)
8+
- The [CHANGELOG](./CHANGELOG.md)
9+
- The **pre-commit** hooks: `pre-commit autoupdate`
10+
4. Open a PR with the changes
11+
5. When the PR is merged, created a tag on `main` with that version with a `v` prefix, e.g. `vX.Y.Z`.
12+
6. Push the tag to Github, which will fire off the release workflow.
13+
7. Create a release via [the Github interface](https://github.com/gadomski/antimeridian/releases).

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "stac-asset"
3-
version = "0.0.4"
3+
version = "0.1.0"
44
description = "Read and download STAC assets across platforms and providers"
55
authors = [
66
{ name = "Pete Gadomski", email = "[email protected]" }
@@ -14,7 +14,7 @@ classifiers = [
1414
"Programming Language :: Python :: 3.9",
1515
"Programming Language :: Python :: 3.10",
1616
"Programming Language :: Python :: 3.11",
17-
"Development Status :: 3 - Alpha",
17+
"Development Status :: 4 - Beta",
1818
]
1919
license = { text = "Apache-2.0" }
2020
requires-python = ">=3.8"

0 commit comments

Comments
 (0)