Skip to content

Commit

Permalink
release: v0.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
gadomski committed Jul 12, 2023
1 parent c87446e commit fc31897
Show file tree
Hide file tree
Showing 4 changed files with 24 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
repos:
- repo: https://github.com/psf/black
rev: 23.3.0
rev: 23.7.0
hooks:
- id: black
- repo: https://github.com/pre-commit/mirrors-mypy
Expand All @@ -13,6 +13,6 @@ repos:
- pytest
- types-aiofiles
- repo: https://github.com/charliermarsh/ruff-pre-commit
rev: "v0.0.277"
rev: "v0.0.278"
hooks:
- id: ruff
8 changes: 7 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,11 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),

## [Unreleased]

## [0.1.0] - 2023-07-12

First release at the new location, <https://github.com/stac-utils/stac-asset>.
Used to be <https://github.com/gadomski/stac-asset>.

## [0.0.4] - 2023-06-09

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

Initial release.

[unreleased]: https://github.com/stac-utils/stac-asset/compare/v0.0.4...HEAD
[unreleased]: https://github.com/stac-utils/stac-asset/compare/v0.1.0...HEAD
[0.1.0]: https://github.com/stac-utils/stac-asset/compare/v0.0.4...v0.1.0
[0.0.4]: https://github.com/stac-utils/stac-asset/compare/v0.0.3...v0.0.4
[0.0.3]: https://github.com/stac-utils/stac-asset/compare/v0.0.2...v0.0.3
[0.0.2]: https://github.com/stac-utils/stac-asset/compare/v0.0.1...v0.0.2
Expand Down
13 changes: 13 additions & 0 deletions RELEASING.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
# Releasing

1. Determine the next version. Try to follow [semantic versioning](https://semver.org/).
Our public API is described in [the README](./README.md#versioning)
2. Create a branch named `release/vX.Y.Z`.
3. Update:
- The version in [pyproject.toml](./pyproject.toml)
- The [CHANGELOG](./CHANGELOG.md)
- The **pre-commit** hooks: `pre-commit autoupdate`
4. Open a PR with the changes
5. When the PR is merged, created a tag on `main` with that version with a `v` prefix, e.g. `vX.Y.Z`.
6. Push the tag to Github, which will fire off the release workflow.
7. Create a release via [the Github interface](https://github.com/gadomski/antimeridian/releases).
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "stac-asset"
version = "0.0.4"
version = "0.1.0"
description = "Read and download STAC assets across platforms and providers"
authors = [
{ name = "Pete Gadomski", email = "pete.gadomski@gmail.com" }
Expand All @@ -14,7 +14,7 @@ classifiers = [
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Development Status :: 3 - Alpha",
"Development Status :: 4 - Beta",
]
license = { text = "Apache-2.0" }
requires-python = ">=3.8"
Expand Down

0 comments on commit fc31897

Please sign in to comment.