Skip to content

Commit c0189ff

Browse files
committed
bump version up to 0.6.3
1 parent c55a0a2 commit c0189ff

File tree

3 files changed

+8
-2
lines changed

3 files changed

+8
-2
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,12 @@ All notable changes to this project will be documented in this file. See [standa
44

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

7+
## 0.6.3
8+
9+
### Changed
10+
11+
- Fixed a bug where it was looking up .env instead of .env.vault [#18](https://github.com/dotenv-org/python-dotenv-vault/pull/18)
12+
713
## 0.6.2
814

915
### Changed

src/dotenv_vault/__version__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
__title__ = "python-dotenv-vault"
22
__description__ = "Decrypt .env.vault file."
33
__url__ = "https://github.com/dotenv-org/python-dotenv-vault"
4-
__version__ = "0.6.2"
4+
__version__ = "0.6.3"
55
__author__ = "dotenv"
66
__author_email__ = "mot@dotenv.org"
77
__license__ = "MIT"

src/dotenv_vault/main.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
logger = logging.getLogger(__name__)
1616

1717
def load_dotenv_vault() -> str:
18-
path = dotenv.find_dotenv(filename=".env.vault")
18+
path = dotenv.find_dotenv(filename=".env.vault", usecwd=True)
1919
if not path:
2020
return path
2121
path = os.path.dirname(path)

0 commit comments

Comments
 (0)