Skip to content

Commit

Permalink
Kapitan release 0.34.4 (#1284)
Browse files Browse the repository at this point in the history
Fixes #

## Proposed Changes

* updates dependencies
* adds jsonpath-ng
* auto bump version.py
  • Loading branch information
ademariag authored Jan 7, 2025
1 parent 56329d8 commit c3c65f4
Show file tree
Hide file tree
Showing 3 changed files with 47 additions and 16 deletions.
2 changes: 1 addition & 1 deletion kapitan/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
"""Project description variables."""

PROJECT_NAME = "kapitan"
VERSION = "0.34.3"
VERSION = "0.34.4"
DESCRIPTION = "Generic templated configuration management for Kubernetes, Terraform and other things"
AUTHOR = "Ricardo Amaro"
AUTHOR_EMAIL = "[email protected]"
Expand Down
54 changes: 40 additions & 14 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

7 changes: 6 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ classifiers = [
"Programming Language :: Python :: 3.12",
]
license = "Apache-2.0"
version = "0.34.3"
version = "0.34.4"
packages = [
{ include = "kapitan" },
]
Expand Down Expand Up @@ -107,6 +107,7 @@ pydantic = "^2.8.2"
pydantic-settings = "^2.4.0"
python-box = "^7.2.0"
copier = "^9.3.1"
jsonpath-ng = "^1.7.0"

[tool.poetry.extras]
gojsonnet = ["gojsonnet"]
Expand All @@ -124,3 +125,7 @@ extend-ignore = "E203,E501,E701"
[tool.black]
line-length = 110
target-version = ['py311']

[tool.poetry_bumpversion.file."kapitan/version.py"]
search = 'VERSION = "{current_version}"'
replace = 'VERSION = "{new_version}"'

0 comments on commit c3c65f4

Please sign in to comment.