diff --git a/README.md b/README.md index e6338c4..572155a 100644 --- a/README.md +++ b/README.md @@ -34,7 +34,7 @@ To use `glue-utils` in AWS Glue, it needs to be added as an in your Glue job. You can do this by adding an `--additional-python-modules` job parameter -with the value, `glue_utils==0.8.0`. For more information about setting +with the value, `glue_utils==0.8.1`. For more information about setting job parameters, see [AWS Glue job parameters](https://docs.aws.amazon.com/glue/latest/dg/aws-glue-programming-etl-glue-arguments.html). ## Usage when developing jobs locally diff --git a/pyproject.toml b/pyproject.toml index e7dea37..d6a5d1e 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "glue-utils" -version = "0.8.0" +version = "0.8.1" package-mode = true description = "Reusable utilities for working with Glue PySpark jobs" authors = ["Noel Llevares "] @@ -149,7 +149,7 @@ exclude_also = [ output = "coverage/results.xml" [tool.bumpver] -current_version = "0.8.0" +current_version = "0.8.1" version_pattern = "MAJOR.MINOR.PATCH[PYTAGNUM]" commit_message = "release: Bump version {old_version} -> {new_version}" commit = true diff --git a/sonar-project.properties b/sonar-project.properties index d7fad4a..e5e99f5 100644 --- a/sonar-project.properties +++ b/sonar-project.properties @@ -1,6 +1,6 @@ sonar.projectKey=dashmug_glue-utils sonar.projectName=glue-utils -sonar.projectVersion=0.8.0 +sonar.projectVersion=0.8.1 sonar.organization=dashmug sonar.sources=src sonar.tests=test diff --git a/src/glue_utils/__init__.py b/src/glue_utils/__init__.py index f41503c..1e1190e 100644 --- a/src/glue_utils/__init__.py +++ b/src/glue_utils/__init__.py @@ -1,6 +1,6 @@ from .options import BaseOptions -__version__ = "0.8.0" +__version__ = "0.8.1" __all__ = [ "BaseOptions", ]