From 9ae46c3ab5583835ff17c8a5ef37e083b1971bb9 Mon Sep 17 00:00:00 2001 From: Leandro Damascena Date: Sun, 21 Jun 2020 15:36:53 +0100 Subject: [PATCH] Fix update version and readme --- README.md | 2 +- cloudiscovery/__init__.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 5ac5742..9ab0414 100644 --- a/README.md +++ b/README.md @@ -297,7 +297,7 @@ pre-commit run --all-files ## Making a release -1. Update the version in setup.py and create a new git tag with `git tag $VERSION`. +1. Update the version in cloudiscovery/__init\__.py and create a new git tag with `git tag $VERSION`. 2. Once you push the tag to GitHub with `git push --tags`, a new CircleCI build is triggered. ### Similar projects and products diff --git a/cloudiscovery/__init__.py b/cloudiscovery/__init__.py index ec0c190..79a940c 100644 --- a/cloudiscovery/__init__.py +++ b/cloudiscovery/__init__.py @@ -45,7 +45,7 @@ print("Python 3.6 or newer is required", file=sys.stderr) sys.exit(1) -__version__ = "2.1.0" +__version__ = "2.1.1" AVAILABLE_LANGUAGES = ["en_US", "pt_BR"] DIAGRAMS_OPTIONS = ["True", "False"]