Skip to content

Commit

Permalink
Merge pull request #97 from neuroforgede/wip/django-502
Browse files Browse the repository at this point in the history
bump version to 2.2.0
  • Loading branch information
s4ke authored Feb 25, 2024
2 parents 6c8a4fb + 69b6b9e commit bde60fd
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@ jobs:
python3 -m venv venv
source venv/bin/activate
(bash install_dev_dependencies.sh && python3 setup.py sdist) || exit 1
mv dist/compose_client-2.1.0*.tar.gz dist/compose_client-$RELEASE_VERSION.tar.gz
mv dist/compose_client-2.2.0*.tar.gz dist/compose_client-$RELEASE_VERSION.tar.gz
- name: "zip deploy/local folder"
run: |
Expand Down
2 changes: 1 addition & 1 deletion client/compose_client/cli/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
@click.group()
def cli() -> None:
"""
NF Compose CLI - version: 2.1.0-beta
NF Compose CLI - version: 2.2.0
"""
pass

Expand Down
2 changes: 1 addition & 1 deletion client/compose_client/library/connection/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
import datetime


USER_AGENT = 'compose_cli 2.1.0-beta'
USER_AGENT = 'compose_cli 2.2.0'


class APIClient(abc.ABC):
Expand Down
2 changes: 1 addition & 1 deletion client/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ def cli_test_suite():
setuptools.setup(
name="compose_client",
scripts=['bin/compose_cli'],
version="2.1.0",
version="2.2.0",
author="NeuroForge GmbH & Co. KG",
author_email="[email protected]",
description="NF Compose package",
Expand Down
2 changes: 1 addition & 1 deletion deploy/local/integration/library/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
from library.types import JSONType


USER_AGENT = 'integration_test compose 2.1.0-beta'
USER_AGENT = 'integration_test compose 2.2.0'


class APIClient(abc.ABC):
Expand Down

0 comments on commit bde60fd

Please sign in to comment.