Skip to content

Commit

Permalink
Merge pull request #122 from nasa/dependabot/pip/requests-2.32.0
Browse files Browse the repository at this point in the history
Bump requests from 2.31.0 to 2.32.0
  • Loading branch information
danielfromearth authored Jun 17, 2024
2 parents f6c750e + 2075899 commit b0f94e6
Show file tree
Hide file tree
Showing 4 changed files with 19 additions and 15 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/release-created.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand All @@ -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/[email protected]
with:
poetry-version: 1.3.2
poetry-version: ${{ env.POETRY_VERSION }}
- name: Bump minor version
run: |
poetry version ${GITHUB_REF#refs/heads/release/}
Expand Down
16 changes: 8 additions & 8 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
8 changes: 4 additions & 4 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -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 <[email protected]>"]
readme = "README.md"
Expand Down

0 comments on commit b0f94e6

Please sign in to comment.