diff --git a/.github/workflows/release-created.yml b/.github/workflows/release-created.yml index 226b347..a17dc4f 100644 --- a/.github/workflows/release-created.yml +++ b/.github/workflows/release-created.yml @@ -4,6 +4,10 @@ name: Release Branch Created on: create +env: + POETRY_VERSION: "1.3.2" + PYTHON_VERSION: "3.10" + jobs: # First job in the workflow builds and verifies the software artifacts bump: @@ -20,11 +24,11 @@ jobs: ref: 'refs/heads/develop' - uses: actions/setup-python@v5 with: - python-version: 3.10 + python-version: ${{ env.PYTHON_VERSION }} - name: Install Poetry uses: abatilo/actions-poetry@v3.0.0 with: - poetry-version: 1.3.2 + poetry-version: ${{ env.POETRY_VERSION }} - name: Bump minor version run: | poetry version ${GITHUB_REF#refs/heads/release/} diff --git a/CHANGELOG.md b/CHANGELOG.md index d29c7b7..2ff1514 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,7 +4,7 @@ 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] +## [1.1.0] ### Added - [issue #114](https://github.com/nasa/batchee/issues/114): Add badges to the readme @@ -16,19 +16,19 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [1.0.0] ### Added -- [issue/6](https://github.com/danielfromearth/batchee/issues/6): Create Adapter code that processes a Harmony Message and STAC Catalog -- [issue/7](https://github.com/danielfromearth/batchee/issues/7): Create working Docker image -- [issue/13](https://github.com/danielfromearth/batchee/issues/13): Add simple command line interface for testing -- [issue/16](https://github.com/danielfromearth/batchee/issues/16): Add a logo +- [issue #6](https://github.com/danielfromearth/batchee/issues/6): Create Adapter code that processes a Harmony Message and STAC Catalog +- [issue #7](https://github.com/danielfromearth/batchee/issues/7): Create working Docker image +- [issue #13](https://github.com/danielfromearth/batchee/issues/13): Add simple command line interface for testing +- [issue #16](https://github.com/danielfromearth/batchee/issues/16): Add a logo - [PR #75](https://github.com/danielfromearth/batchee/pull/75): Add Docker build steps to GitHub Actions workflow - [PR #84](https://github.com/danielfromearth/batchee/pull/84): Add readme badges - [PR #100](https://github.com/danielfromearth/batchee/pull/100): Add license - [PR #111](https://github.com/nasa/batchee/pull/111): Add codecov to CI pipeline - [PR #112](https://github.com/nasa/batchee/pull/111): Add SNYK and PyPI to CI pipeline ### Changed -- [issue/11](https://github.com/danielfromearth/batchee/issues/11): Rename from concat_batcher to batchee -- [issue/21](https://github.com/danielfromearth/batchee/issues/21): Improve CICD workflows -- [issue/41](https://github.com/danielfromearth/batchee/issues/41): Change Adapter output from single to multiple STAC Catalogs +- [issue #11](https://github.com/danielfromearth/batchee/issues/11): Rename from concat_batcher to batchee +- [issue #21](https://github.com/danielfromearth/batchee/issues/21): Improve CICD workflows +- [issue #41](https://github.com/danielfromearth/batchee/issues/41): Change Adapter output from single to multiple STAC Catalogs ### Deprecated ### Removed ### Fixed diff --git a/poetry.lock b/poetry.lock index 832fb82..5c7681b 100644 --- a/poetry.lock +++ b/poetry.lock @@ -663,13 +663,13 @@ files = [ [[package]] name = "requests" -version = "2.31.0" +version = "2.32.0" description = "Python HTTP for Humans." optional = false -python-versions = ">=3.7" +python-versions = ">=3.8" files = [ - {file = "requests-2.31.0-py3-none-any.whl", hash = "sha256:58cd2187c01e70e6e26505bca751777aa9f2ee0b7f4300988b709f44e013003f"}, - {file = "requests-2.31.0.tar.gz", hash = "sha256:942c5a758f98d790eaed1a29cb6eefc7ffb0d1cf7af05c3d2791656dbd6ad1e1"}, + {file = "requests-2.32.0-py3-none-any.whl", hash = "sha256:f2c3881dddb70d056c5bd7600a4fae312b2a300e39be6a118d30b90bd27262b5"}, + {file = "requests-2.32.0.tar.gz", hash = "sha256:fa5490319474c82ef1d2c9bc459d3652e3ae4ef4c4ebdd18a21145a47ca4b6b8"}, ] [package.dependencies] diff --git a/pyproject.toml b/pyproject.toml index df6e3fd..b2c93ba 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "batchee" -version = "0.1.1a8" +version = "1.1.0" description = "Determine how to group together input files into batches for subsequent concatenation" authors = ["Daniel Kaufman "] readme = "README.md"