Skip to content

Commit

Permalink
Merge pull request #11 from devqik/correct-the-name-of-dependency
Browse files Browse the repository at this point in the history
Correct dependency name
  • Loading branch information
devqik authored Feb 15, 2024
2 parents a3b4b90 + 9db9c92 commit 3546ec4
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ repos:
hooks:
- id: validate_manifest
- repo: https://github.com/devqik/bump-helm-chart-version
rev: v1.1.2
rev: v1.1.3
hooks:
- id: bump-chart-version
entry: bump-chart-version
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ To use bump-helm-chart-version, follow these steps:
```yaml
repos:
- repo: https://github.com/devqik/bump-helm-chart-version
rev: v1.1.2
rev: v1.1.3
hooks:
- id: bump-chart-version
entry: bump-chart-version
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"

[tool.poetry]
name = "bump_helm_chart_version"
version = "1.1.2"
version = "1.1.3"
description = "Bump helm chart version if the /templates folder has changes'"
authors = ["Youssef Hussein <youssef@doubl.tech>"]
license = "BSD 3-Clause License"
Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
[metadata]
name = Bump helm chart version
description = Bump helm chart version if the /templates folder has changes
version = 1.1.2
version = 1.1.3
author = Youssef Hussein
author_email = youssef@doubl.tech
license = BSD 3-Clause License
Expand Down
5 changes: 3 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,15 +6,16 @@

setup(
name='bump-helm-chart-version',
version='1.1.2',
version='1.1.3',
description='Bump helm chart version if the /templates folder has changes',
author='Youssef Hussein',
author_email='youssef@doubl.tech',
packages=['bump_helm_chart_version'],
install_requires=['pyyaml'],
install_requires=['PyYAML'],
entry_points={
'console_scripts': [
'bump-chart-version = bump_helm_chart_version.bump_chart_version:main',
],
},
include_package_data=True,
)

0 comments on commit 3546ec4

Please sign in to comment.