Skip to content

Commit

Permalink
release 0.5.3
Browse files Browse the repository at this point in the history
  • Loading branch information
ndejong committed Sep 28, 2024
1 parent e8c2d1a commit 61bdc9f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
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 = "poetry.core.masonry.api"

[tool.poetry]
name = "env-alias"
version = "0.5.2"
version = "0.5.3"
description = "Powerful helper utility to create shell alias commands to easily set collections of environment variables often with secret values from a variety of data-sources and data-formats."
authors = ["Nicholas de Jong <contact@nicholasdejong.com>"]
license = "BSD-2-Clause"
Expand Down
2 changes: 1 addition & 1 deletion src/env_alias/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
from sys import argv

__title__ = "Env Alias"
__version__ = "0.5.2"
__version__ = "0.5.3"

LOGGER_LEVEL = "info"
if "--debug" in argv or getenv("ENVALIAS_DEBUG", "").lower().startswith(("true", "yes", "enable", "on")):
Expand Down

0 comments on commit 61bdc9f

Please sign in to comment.