diff --git a/README.md b/README.md index cc9a251c..cb64ddc0 100644 --- a/README.md +++ b/README.md @@ -4,7 +4,7 @@ [![Coverage Status](https://coveralls.io/repos/github/NitorCreations/nameless-deploy-tools/badge.svg?branch=master)](https://coveralls.io/github/NitorCreations/nameless-deploy-tools?branch=master) [![Code style: black](https://img.shields.io/badge/code%20style-black-000000.svg)](https://github.com/psf/black) -## Released version 1.285 +## Released version 1.286 Nameless deploy tools are a set of tools to implement a true Infrastructure As Code workflow with various cloud infrastructure management tools. Currently supported tools are diff --git a/docker/Dockerfile b/docker/Dockerfile index 3db7181f..27f32183 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -176,7 +176,7 @@ RUN set -ex \ && unzip -d /usr/bin terraform_${TERRAFORM_VERSION}_linux_${dpkgArch}.zip \ && rm -f terraform_${TERRAFORM_VERSION}_linux_${dpkgArch}.zip terraform_${TERRAFORM_VERSION}_SHA256SUMS terraform_${TERRAFORM_VERSION}_SHA256SUMS.sig -RUN pip install --no-cache-dir nameless-deploy-tools==1.285 +RUN pip install --no-cache-dir nameless-deploy-tools==1.286 VOLUME /var/lib/docker diff --git a/n_utils/__init__.py b/n_utils/__init__.py index 71def01d..0b53c65f 100644 --- a/n_utils/__init__.py +++ b/n_utils/__init__.py @@ -16,7 +16,7 @@ """ import base64 -VERSION = "1.285" +VERSION = "1.286" PATH_COMMANDS = [ "bin/create-shell-archive.sh", diff --git a/pyproject.toml b/pyproject.toml index 2be2eca3..8982fe3d 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -27,7 +27,7 @@ requires-python = ">=3.6" description = "Tools for deploying to AWS via CloudFormation and Serverless framework that support a pull request based workflow" license = {text = "Apache 2.0"} authors = [{name = "Pasi Niemi", email = "pasi@nitor.com"}] -version = "1.285" +version = "1.286" dynamic = ["entry-points"] dependencies = [ "argcomplete", @@ -61,7 +61,7 @@ content-type = "text/markdown" [project.urls] Homepage = "http://github.com/NitorCreations/nameless-deploy-tools" -Download = "https://github.com/NitorCreations/nameless-deploy-tools/tarball/1.285" +Download = "https://github.com/NitorCreations/nameless-deploy-tools/tarball/1.286" [project.scripts] associate-eip = "n_utils.cli:associate_eip" diff --git a/setup.cfg b/setup.cfg index 8703a76e..c043a4a1 100644 --- a/setup.cfg +++ b/setup.cfg @@ -21,12 +21,12 @@ description = Tools for deploying to AWS via CloudFormation and Serverless frame description_file = README.md author = Pasi Niemi author_email = pasi@nitor.com -download_url = https://github.com/NitorCreations/nameless-deploy-tools/tarball/1.285 +download_url = https://github.com/NitorCreations/nameless-deploy-tools/tarball/1.286 license = Apache 2.0 long_description = file: README.md long_description_content_type = text/markdown url = http://github.com/NitorCreations/nameless-deploy-tools -version = 1.285 +version = 1.286 [options] packages = n_utils