From cd3b70c86508aea4721361a63fce3d51e2bfc543 Mon Sep 17 00:00:00 2001 From: Noel Llevares <1972844+dashmug@users.noreply.github.com> Date: Tue, 20 Aug 2024 22:11:44 +1000 Subject: [PATCH] release: Bump version 0.8.0 -> 0.8.1 --- README.md | 2 +- pyproject.toml | 4 ++-- sonar-project.properties | 2 +- src/glue_utils/__init__.py | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) 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", ]