Skip to content

Commit

Permalink
bump version up to 0.6.3
Browse files Browse the repository at this point in the history
  • Loading branch information
nsnguyen committed Aug 9, 2023
1 parent c55a0a2 commit c0189ff
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 2 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,12 @@ 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.3

### Changed

- Fixed a bug where it was looking up .env instead of .env.vault [#18](https://github.com/dotenv-org/python-dotenv-vault/pull/18)

## 0.6.2

### 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.2"
__version__ = "0.6.3"
__author__ = "dotenv"
__author_email__ = "[email protected]"
__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 @@ -15,7 +15,7 @@
logger = logging.getLogger(__name__)

def load_dotenv_vault() -> str:
path = dotenv.find_dotenv(filename=".env.vault")
path = dotenv.find_dotenv(filename=".env.vault", usecwd=True)
if not path:
return path
path = os.path.dirname(path)
Expand Down

0 comments on commit c0189ff

Please sign in to comment.