Skip to content

Commit

Permalink
release: Bump version 0.6.0 -> 0.7.0
Browse files Browse the repository at this point in the history
  • Loading branch information
dashmug committed Jul 3, 2024
1 parent 70550ab commit f128fa0
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -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 <dashmug@gmail.com>"]
Expand Down Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion sonar-project.properties
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion src/glue_utils/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
from .options import BaseOptions

__version__ = "0.6.0"
__version__ = "0.7.0"
__all__ = [
"BaseOptions",
]

0 comments on commit f128fa0

Please sign in to comment.