Skip to content

Commit

Permalink
Merge pull request #44 from getindata/release-1.10.2
Browse files Browse the repository at this point in the history
Release 1.10.2
  • Loading branch information
MarekMaj authored Mar 28, 2023
2 parents 744a357 + d0ea75f commit b8fed35
Show file tree
Hide file tree
Showing 4 changed files with 25 additions and 5 deletions.
16 changes: 14 additions & 2 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,18 @@ jobs:
user: __token__
password: ${{ secrets.PYPI_API_TOKEN }}
verbose: true # trace if the upload fails
outputs:
package_version: ${{ steps.set_package_version.outputs.PACKAGE_VERSION }}

docker:
needs: deploy
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.8]
steps:
- name: Checkout the repo
uses: actions/checkout@v2

# Setting up Docker Buildx with docker-container driver is required
# at the moment to be able to use a subdirectory with Git context
Expand All @@ -84,8 +96,8 @@ jobs:
context: release
build-args: |
PYTHON_VERSION=${{ matrix.python-version }}
STREAMING_CLI_VERSION=${{ steps.set_package_version.outputs.PACKAGE_VERSION }}
STREAMING_CLI_VERSION=${{ needs.deploy.outputs.package_version }}
build-contexts: |
context=docker-image://docker:stable-git
push: true
tags: gcr.io/getindata-images-public/streaming-cli:${{ steps.set_package_version.outputs.PACKAGE_VERSION }}
tags: gcr.io/getindata-images-public/streaming-cli:${{ needs.deploy.outputs.package_version }}
10 changes: 9 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,12 @@

## [Unreleased]

## [1.10.2] - 2023-03-28

### Added

- Separate CI job for docker creation

## [1.10.1] - 2023-03-27

### Fixed
Expand Down Expand Up @@ -120,7 +126,9 @@

# [Unreleased]&#x3A; <https://github.com/getindata/streaming-cli/compare/1.8.0...HEAD>

[Unreleased]: https://github.com/getindata/streaming-cli/compare/1.10.1...HEAD
[Unreleased]: https://github.com/getindata/streaming-cli/compare/1.10.2...HEAD

[1.10.2]: https://github.com/getindata/streaming-cli/compare/1.10.1...1.10.2

[1.10.1]: https://github.com/getindata/streaming-cli/compare/1.10.0...1.10.1

Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 1.10.1
current_version = 1.10.2

[flake8]
exclude = .git,__pycache__,build,dist,*.yml
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
from setuptools import find_packages, setup
from setuptools.command.install import install

__version__ = "1.10.1"
__version__ = "1.10.2"

with open("README.md", "r") as fh:
long_description = fh.read()
Expand Down

0 comments on commit b8fed35

Please sign in to comment.