vaultctl 0.2.0__tar.gz → 0.2.1__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (24) hide show
  1. {vaultctl-0.2.0 → vaultctl-0.2.1}/PKG-INFO +1 -1
  2. {vaultctl-0.2.0 → vaultctl-0.2.1}/pyproject.toml +1 -1
  3. {vaultctl-0.2.0 → vaultctl-0.2.1}/src/vaultctl/version.py +1 -1
  4. {vaultctl-0.2.0 → vaultctl-0.2.1}/.devcontainer/devcontainer-lock.json +0 -0
  5. {vaultctl-0.2.0 → vaultctl-0.2.1}/.devcontainer/devcontainer.json +0 -0
  6. {vaultctl-0.2.0 → vaultctl-0.2.1}/.github/workflows/docker-publish.yaml +0 -0
  7. {vaultctl-0.2.0 → vaultctl-0.2.1}/.github/workflows/release.yaml +0 -0
  8. {vaultctl-0.2.0 → vaultctl-0.2.1}/.gitignore +0 -0
  9. {vaultctl-0.2.0 → vaultctl-0.2.1}/.renovaterc.json5 +0 -0
  10. {vaultctl-0.2.0 → vaultctl-0.2.1}/Dockerfile +0 -0
  11. {vaultctl-0.2.0 → vaultctl-0.2.1}/LICENSE +0 -0
  12. {vaultctl-0.2.0 → vaultctl-0.2.1}/README.md +0 -0
  13. {vaultctl-0.2.0 → vaultctl-0.2.1}/src/vaultctl/__init__.py +0 -0
  14. {vaultctl-0.2.0 → vaultctl-0.2.1}/src/vaultctl/commands/__init__.py +0 -0
  15. {vaultctl-0.2.0 → vaultctl-0.2.1}/src/vaultctl/commands/backup_raft_snapshot.py +0 -0
  16. {vaultctl-0.2.0 → vaultctl-0.2.1}/src/vaultctl/commands/bootstrap.py +0 -0
  17. {vaultctl-0.2.0 → vaultctl-0.2.1}/src/vaultctl/commands/login.py +0 -0
  18. {vaultctl-0.2.0 → vaultctl-0.2.1}/src/vaultctl/commands/pki/__init__.py +0 -0
  19. {vaultctl-0.2.0 → vaultctl-0.2.1}/src/vaultctl/commands/pki/rotate_issuing.py +0 -0
  20. {vaultctl-0.2.0 → vaultctl-0.2.1}/src/vaultctl/commands/restore_raft_snapshot.py +0 -0
  21. {vaultctl-0.2.0 → vaultctl-0.2.1}/src/vaultctl/main.py +0 -0
  22. {vaultctl-0.2.0 → vaultctl-0.2.1}/src/vaultctl/options.py +0 -0
  23. {vaultctl-0.2.0 → vaultctl-0.2.1}/src/vaultctl/utils.py +0 -0
  24. {vaultctl-0.2.0 → vaultctl-0.2.1}/uv.lock +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: vaultctl
3
- Version: 0.2.0
3
+ Version: 0.2.1
4
4
  Summary: vaultctl is a command-line interface (CLI) tool designed to facilitate operations with HashiCorp Vault.
5
5
  Author-email: d4rkfella <georgi.panov@darkfellanetwork.com>
6
6
  License: MIT
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "vaultctl"
3
- version = "0.2.0"
3
+ version = "0.2.1"
4
4
  description = "vaultctl is a command-line interface (CLI) tool designed to facilitate operations with HashiCorp Vault."
5
5
  readme = "README.md"
6
6
  license = { text = "MIT" }
@@ -5,4 +5,4 @@ app = typer.Typer()
5
5
 
6
6
  @app.command()
7
7
  def version() -> None:
8
- print("vaultctl 0.1.0") # noqa: T201
8
+ print("vaultctl 0.2.1") # noqa: T201
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes