diff --git a/README.md b/README.md index 082d26f..e6fb2cd 100644 --- a/README.md +++ b/README.md @@ -393,4 +393,4 @@ $ shelvery ebs pull_shared_backups 2. Run the `deploy-sam-template.sh` script with the options to deploy the template in the target account. - `-b` [required] source bucket to deploy the sam package to - - `-v` [optional] shelvery version to deploy, defaults to `0.7.0` + - `-v` [optional] shelvery version to deploy, defaults to `0.7.1` diff --git a/deploy-sam-template.sh b/deploy-sam-template.sh index be01e85..b6e32c4 100755 --- a/deploy-sam-template.sh +++ b/deploy-sam-template.sh @@ -1,7 +1,7 @@ #!/bin/bash set -e -SHELVERY_VERSION=0.7.0 +SHELVERY_VERSION=0.7.1 while getopts ":b:v:a:" opt; do case $opt in diff --git a/setup.py b/setup.py index 0d2c31f..7289cae 100644 --- a/setup.py +++ b/setup.py @@ -1,6 +1,6 @@ from setuptools import setup -setup(name='shelvery', version='0.7.0', author='Base2Services R&D', +setup(name='shelvery', version='0.7.1', author='Base2Services R&D', author_email='itsupport@base2services.com', url='http://github.com/base2Services/shelvery-aws-backups', classifiers=[ diff --git a/shelvery/__init__.py b/shelvery/__init__.py index 8dfd74f..97489b1 100644 --- a/shelvery/__init__.py +++ b/shelvery/__init__.py @@ -1,4 +1,4 @@ -__version__ = '0.7.0' +__version__ = '0.7.1' LAMBDA_WAIT_ITERATION = 'lambda_wait_iteration' S3_DATA_PREFIX = 'backups' SHELVERY_DO_BACKUP_TAGS = ['True', 'true', '1', 'TRUE']