Skip to content

Commit

Permalink
Bump version to 0.9.12 (#153)
Browse files Browse the repository at this point in the history
  • Loading branch information
tarunmenon95 authored Jan 29, 2025
1 parent 6917333 commit 9ff692e
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion deploy-sam-template.sh
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/bin/bash
set -e

SHELVERY_VERSION=0.9.11
SHELVERY_VERSION=0.9.12

# set DOCKERUSERID to current user. could be changed with -u uid
DOCKERUSERID="-u $(id -u)"
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
from setuptools import setup

setup(name='shelvery', version='0.9.11', author='Base2Services R&D',
setup(name='shelvery', version='0.9.12', author='Base2Services R&D',
author_email='[email protected]',
url='http://github.com/base2Services/shelvery-aws-backups',
classifiers=[
Expand Down
2 changes: 1 addition & 1 deletion shelvery/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
__version__ = '0.9.11'
__version__ = '0.9.12'
LAMBDA_WAIT_ITERATION = 'lambda_wait_iteration'
S3_DATA_PREFIX = 'backups'
SHELVERY_DO_BACKUP_TAGS = ['True', 'true', '1', 'TRUE']
2 changes: 1 addition & 1 deletion shelvery/documentdb_backup.py
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@ def copy_shared_backup(self, source_account: str, source_backup: BackupResource)

copy_kms_key = RuntimeConfig.get_copy_kms_key_id(source_backup.tags, self)
# if a new key is provided by config encypt the copy with the new kms key
if copy_kms_key is not None:
if copy_kms_key:
self.logger.info(
f"Snapshot {source_backup.backup_id} will be copied and encrypted with the kms key {copy_kms_key}")
kms_key = copy_kms_key
Expand Down
2 changes: 1 addition & 1 deletion template.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ Resources:
Tags:
Name: Shelvery
CreatedBy: Shelvery
ShelveryVersion: 0.9.11
ShelveryVersion: 0.9.12

Environment:
Variables:
Expand Down

0 comments on commit 9ff692e

Please sign in to comment.