Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update README && Bump version 0.3.1 #65

Merged
merged 1 commit into from
May 9, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 9 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# CHANGELOG.md

## 0.3.1 (2024-05-09)

Fix:

- Update GitPython [fixes #55]
- Update to CodeQL from LGTM.com
- Move from `vault` Docker container to `hashicorp/vault` in automated tests

## 0.3.0 (2021-03-17)

Features:
Expand All @@ -9,4 +17,4 @@ Features:

Fix:

- Moved from gitlab-ci to Github Actions for CI
- Moved from gitlab-ci to Github Actions for CI
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@ for running tests using docker, you can use the following command:

Unittesting and integration testing is automatically run via Github Actions on commit and PRs.

Additionally, code quality checking is handled by LGTM.com
Additionally, code quality checking is handled by CodeQL.

Both of these checks must pass before PRs will be merged.

Expand Down
2 changes: 1 addition & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ version: "3.5"
services:
vault:
container_name: helm-vault
image: vault
image: hashicorp/vault
ports:
- 8200:8200
environment:
Expand Down
4 changes: 2 additions & 2 deletions plugin.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name: "vault"
version: "0.3.0"
version: "0.3.1"
usage: "Store secrets in Hashicorp Vault"
description: |-
Helm plugin for storing secrets in HashiCorp Vault
command: "$HELM_PLUGIN_DIR/src/vault.py"
ignoreFlags: false
ignoreFlags: false
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

setup(
name='vault',
version='0.3.0',
version='0.3.1',
description='Helm plugin for storing secrets in HashiCorp Vault',
author='Just-Insane',
author_email='[email protected]',
Expand Down
Loading