File tree Expand file tree Collapse file tree 3 files changed +8
-2
lines changed
Expand file tree Collapse file tree 3 files changed +8
-2
lines changed Original file line number Diff line number Diff 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
Original file line number Diff line number Diff line change 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"
Original file line number Diff line number Diff line change 1515logger = logging .getLogger (__name__ )
1616
1717def 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 )
You can’t perform that action at this time.
0 commit comments