diff --git a/lambda_cache/__init__.py b/lambda_cache/__init__.py index afce7a3..02bd391 100644 --- a/lambda_cache/__init__.py +++ b/lambda_cache/__init__.py @@ -1,5 +1,5 @@ __all__ = ["cache", "get_entry"] -__version__ = "0.7.1" +__version__ = "0.7.2" from .ssm import cache, get_entry from .secrets_manager import cache, get_entry diff --git a/pyproject.toml b/pyproject.toml index 1794ac3..780293e 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "lambda-cache" -version = "0.7.1" +version = "0.7.2" description = "Python utility for simple caching in AWS Lambda functions" authors = ["keithrozario "] documentation = "https://simple-lambda-cache.readthedocs.io/en/latest/"