From 81149e7757c7c5cd4db51aa66b358614b83a2fd1 Mon Sep 17 00:00:00 2001 From: Alexandru Salajan Date: Thu, 12 Oct 2023 10:59:41 +0300 Subject: [PATCH] [RELEASE] - Release version 2.2.1 --- .bumpversion.cfg | 2 +- README.md | 4 ++-- setup.py | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 99bfce1..c6eec2e 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 2.2.0 +current_version = 2.2.1 commit = True tag = True tag_name = {new_version} diff --git a/README.md b/README.md index 7e415a9..5204a89 100644 --- a/README.md +++ b/README.md @@ -151,7 +151,7 @@ workon ops # uninstall previous `ops` version (if you have it) pip uninstall ops --yes -# install ops-cli v2.2.0 stable release +# install ops-cli v2.2.1 stable release pip install --upgrade ops-cli ``` @@ -167,7 +167,7 @@ You can try out `ops-cli`, by using docker. The docker image has all required pr To start out a container, running the latest `ops-cli` docker image run: ```sh -docker run -it ghcr.io/adobe/ops-cli:2.2.0 bash +docker run -it ghcr.io/adobe/ops-cli:2.2.1 bash ``` After the container has started, you can start using `ops-cli`: diff --git a/setup.py b/setup.py index 9b081c1..696b390 100644 --- a/setup.py +++ b/setup.py @@ -23,7 +23,7 @@ _requires = [r for r in open(os.path.sep.join((_mydir, 'requirements.txt')), "r").read().split('\n') if len(r) > 1] setup( name='ops-cli', - version='2.2.0', + version='2.2.1', description='Ops - wrapper for Terraform, Ansible, and SSH for cloud automation', long_description=_readme + '\n\n', long_description_content_type='text/markdown',