Skip to content

Commit

Permalink
change version bump to 0.7.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Nguyen Nguyen authored and Nguyen Nguyen committed Jul 27, 2023
1 parent 35f3545 commit 48bb438
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ All notable changes to this project will be documented in this file. See [standa

## [Unreleased](https://github.com/dotenv-org/python-dotenv-vault/compare/v0.5.1...master)

## 0.6.1
## 0.7.0

### Changed

Expand Down
2 changes: 1 addition & 1 deletion src/dotenv_vault/__version__.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
__title__ = "python-dotenv-vault"
__description__ = "Decrypt .env.vault file."
__url__ = "https://github.com/dotenv-org/python-dotenv-vault"
__version__ = "0.6.1"
__version__ = "0.7.0"
__author__ = "dotenv"
__author_email__ = "mot@dotenv.org"
__license__ = "MIT"
2 changes: 1 addition & 1 deletion src/dotenv_vault/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ def load_dotenv_vault() -> str:
path = os.path.dirname(path)
if '.env.vault' not in os.listdir(path):
# we fall back to .env
logger.warning("No .env.vault file found. Falling back to .env")
logger.warning(f"You set DOTENV_KEY but you are missing a .env.vault file at {path}. Did you forget to build it?")
return f"{path}/.env"
return f"{path}/.env.vault"

Expand Down

0 comments on commit 48bb438

Please sign in to comment.