diff --git a/README.md b/README.md index f3b74bd..91abca8 100644 --- a/README.md +++ b/README.md @@ -33,7 +33,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.6.0`. For more information about setting +with the value, `glue_utils==0.7.0`. 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 892629f..b6298ce 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "glue-utils" -version = "0.6.0" +version = "0.7.0" package-mode = true description = "Reusable utilities for working with Glue PySpark jobs" authors = ["Noel Llevares "] @@ -143,7 +143,7 @@ exclude_also = [ output = "coverage/results.xml" [tool.bumpver] -current_version = "0.6.0" +current_version = "0.7.0" 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 948863d..0841c37 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.6.0 +sonar.projectVersion=0.7.0 sonar.organization=dashmug sonar.sources=src sonar.tests=test diff --git a/src/glue_utils/__init__.py b/src/glue_utils/__init__.py index a9609ae..31e8f06 100644 --- a/src/glue_utils/__init__.py +++ b/src/glue_utils/__init__.py @@ -1,6 +1,6 @@ from .options import BaseOptions -__version__ = "0.6.0" +__version__ = "0.7.0" __all__ = [ "BaseOptions", ]