Skip to content

Commit

Permalink
bump up major version
Browse files Browse the repository at this point in the history
  • Loading branch information
nguyen committed Aug 1, 2023
1 parent b1c8ca8 commit 80361df
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 5 deletions.
4 changes: 2 additions & 2 deletions 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.7.0
## 0.6.2

### Changed

Expand All @@ -14,7 +14,7 @@ All notable changes to this project will be documented in this file. See [standa

### Changed

- Allow to place .env.vault file anywhere in app [#13](https://github.com/dotenv-org/python-dotenv-vault/pull/13)
- Look for .env.vault file at same location as .env file. Finds .env file anywhere in app (just like original python lib) [#13](https://github.com/dotenv-org/python-dotenv-vault/pull/13)

## 0.6.0

Expand Down
1 change: 0 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
import os
import sys
from setuptools import setup, find_packages

src = {}
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.6.2"
__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 80361df

Please sign in to comment.