Skip to content

Commit

Permalink
Bump version: 0.1.0 → 0.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
fmigneault committed Mar 28, 2024
1 parent 8c35d8a commit 2acb60a
Show file tree
Hide file tree
Showing 10 changed files with 37 additions and 26 deletions.
20 changes: 18 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,24 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

[Unreleased](https://github.com/stac-extensions/ml-aoi/compare/v0.1.0...HEAD) (latest)
[Unreleased](https://github.com/stac-extensions/ml-aoi/compare/v0.2.0...HEAD) (latest)
---------------------------------------------------------------------------------------

- n/a

- n/a

- n/a

- n/a

- n/a

.. _changes_0.2.0:

[v0.2.0](https://github.com/stac-extensions/ml-aoi/tree/v0.2.0) (2024-03-28)
========================================================================

### Added
- Add `pystac_ml_aoi` Python package to provide similar capabilities to
[`pystac.extensions`](https://github.com/stac-utils/pystac/tree/main/pystac/extensions) for ML-AOI.
Expand All @@ -29,6 +44,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Fixed
- Fix syntax and format of all Markdown files.

## [v0.1.0](https://github.com/stac-extensions/ml-aoi/tree/v0.1.0) - 2021-04-29
[v0.1.0](https://github.com/stac-extensions/ml-aoi/tree/v0.1.0) (2021-04-29)
========================================================================

Initial independent release.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ MAKEFILE_NAME := $(word $(words $(MAKEFILE_LIST)),$(MAKEFILE_LIST))
APP_ROOT := $(abspath $(lastword $(MAKEFILE_NAME))/..)
APP_NAME := $(shell basename $(APP_ROOT))
APP_PKG := pystac_ml_aoi
APP_VERSION ?= 0.1.0
APP_VERSION ?= 0.2.0

# guess OS (Linux, Darwin,...)
OS_NAME := $(shell uname -s 2>/dev/null || echo "unknown")
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

<!--lint disable maximum-line-width-->
- **Title:** ML AOI
- **Identifier:** [https://stac-extensions.github.io/ml-aoi/v0.1.0/schema.json](https://stac-extensions.github.io/ml-aoi/v0.1.0/schema.json)
- **Identifier:** [https://stac-extensions.github.io/ml-aoi/v0.2.0/schema.json](https://stac-extensions.github.io/ml-aoi/v0.2.0/schema.json)
- **Field Name Prefix:** ml-aoi
- **Scope:** Collection, Item, Asset, Links
- **Extension [Maturity Classification](https://github.com/radiantearth/stac-spec/tree/master/extensions/README.md#extension-maturity):** Proposal
Expand Down
2 changes: 1 addition & 1 deletion examples/collection_EuroSAT-subset-train.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"stac_version": "1.0.0",
"stac_extensions": [
"https://stac-extensions.github.io/eo/v1.1.0/schema.json",
"https://stac-extensions.github.io/ml-aoi/v0.1.0/schema.json",
"https://stac-extensions.github.io/ml-aoi/v0.2.0/schema.json",
"https://stac-extensions.github.io/scientific/v1.0.0/schema.json",
"https://stac-extensions.github.io/stats/v0.2.0/schema.json",
"https://stac-extensions.github.io/version/v1.0.0/schema.json",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"https://stac-extensions.github.io/file/v1.0.0/schema.json",
"https://stac-extensions.github.io/raster/v1.1.0/schema.json",
"https://stac-extensions.github.io/label/v1.0.1/schema.json",
"https://stac-extensions.github.io/ml-aoi/v0.1.0/schema.json",
"https://stac-extensions.github.io/ml-aoi/v0.2.0/schema.json",
"https://stac-extensions.github.io/version/v1.0.0/schema.json"
],
"type": "Feature",
Expand Down
4 changes: 2 additions & 2 deletions json-schema/schema.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"$schema": "http://json-schema.org/draft-07/schema#",
"$id": "https://stac-extensions.github.io/ml-aoi/v0.1.0/schema.json#",
"$id": "https://stac-extensions.github.io/ml-aoi/v0.2.0/schema.json#",
"title": "ML AOI Extension",
"description": "ML AOI Extension for STAC definitions.",
"oneOf": [
Expand Down Expand Up @@ -91,7 +91,7 @@
"stac_extensions": {
"type": "array",
"contains": {
"const": "https://stac-extensions.github.io/ml-aoi/v0.1.0/schema.json"
"const": "https://stac-extensions.github.io/ml-aoi/v0.2.0/schema.json"
}
}
}
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@
"scripts": {
"test": "npm run check-markdown && npm run check-examples",
"check-markdown": "remark . -f -r .github/remark.yaml",
"check-examples": "stac-node-validator . --lint --verbose --schemaMap https://stac-extensions.github.io/ml-aoi/v0.1.0/schema.json=./json-schema/schema.json",
"format-examples": "stac-node-validator . --format --schemaMap https://stac-extensions.github.io/ml-aoi/v0.1.0/schema.json=./json-schema/schema.json"
"check-examples": "stac-node-validator . --lint --verbose --schemaMap https://stac-extensions.github.io/ml-aoi/v0.2.0/schema.json=./json-schema/schema.json",
"format-examples": "stac-node-validator . --format --schemaMap https://stac-extensions.github.io/ml-aoi/v0.2.0/schema.json=./json-schema/schema.json"
},
"dependencies": {
"remark-lint-no-html": "^2.0.0",
Expand Down
2 changes: 1 addition & 1 deletion pystac_ml_aoi/__init__.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
# this is automatically updated by 'make bump'
__version__ = "0.1.0"
__version__ = "0.2.0"
23 changes: 9 additions & 14 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 0.1.0
current_version = 0.2.0
commit = True
tag = True
tag_name = v{new_version}
Expand All @@ -11,25 +11,20 @@ search =
replace =
[Unreleased](https://github.com/stac-extensions/ml-aoi/compare/v{new_version}...HEAD) (latest)
---------------------------------------------------------------------------------------

### Added

- n/a

### Changes

- n/a

### Deprecated

- n/a

### Removed

- n/a

### Fixed

- n/a

.. _changes_{new_version}:

[v{new_version}](https://github.com/stac-extensions/ml-aoi/tree/{new_version}) ({now:%%Y-%%m-%%d})
[v{new_version}](https://github.com/stac-extensions/ml-aoi/tree/v{new_version}) ({now:%%Y-%%m-%%d})
========================================================================

[bumpversion:file:README.md]
Expand Down Expand Up @@ -73,9 +68,9 @@ addopts =
log_cli = false
log_level = DEBUG
python_files = test_*.py
markers =
markers =
functional: mark test as functionality validation
filterwarnings =
filterwarnings =
ignore:.*iana\.org.*:urllib3.exceptions.InsecureRequestWarning

[isort]
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ def _parse_requirements(file_path, requirements, links):
}

# this is automatically updated by 'make bump'
VERSION = "0.1.0"
VERSION = "0.2.0"

setup(
name="pystac-ml-aoi",
Expand Down

0 comments on commit 2acb60a

Please sign in to comment.