Skip to content

Commit 1ac5510

Browse files
committed
0.2.3
1 parent 2a50355 commit 1ac5510

File tree

3 files changed

+12
-5
lines changed

3 files changed

+12
-5
lines changed

CHANGELOG.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,13 @@
22

33
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
44

5-
## [Unreleased](https://github.com/dotenvx/python-dotenvx/compare/v0.2.2...main)
5+
## [Unreleased](https://github.com/dotenvx/python-dotenvx/compare/v0.2.3...main)
6+
7+
## [0.2.3](https://github.com/dotenvx/dotenvx/compare/v0.2.2...v0.2.3)
8+
9+
### Changed
10+
11+
* Patch `dotenvx` binary install across multiple edge cases
612

713
## [0.2.2](https://github.com/dotenvx/dotenvx/compare/v0.2.1...v0.2.2)
814

README.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,20 +26,21 @@ Install and use it in code just like `python-dotenv`.
2626
pip install python-dotenvx
2727
```
2828

29-
Then run `dotenvx-postinstall` to install the `dotenvx` binary.
29+
Then run `dotenvx-postinstall` to install the `dotenvx` binary (python-dotenvx is a wrapper).
3030

3131
```sh
3232
dotenvx-postinstall
3333
```
3434

35+
Then use it in code.
36+
3537
```python
3638
# main.py
3739
import os
3840
from dotenvx import load_dotenvx
39-
load_dotenvx() # take environment variables from .env.
41+
load_dotenvx() # take environment variables from .env.
4042

4143
print(os.getenv("S3_BUCKET"))
4244
```
4345

4446
 
45-

src/dotenvx/__version__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
__title__ = "python-dotenvx"
22
__description__ = "[dotenvx.com] a better dotenv–from the creator of `dotenv`"
33
__url__ = "https://github.com/dotenvx/python-dotenvx"
4-
__version__ = "0.2.2"
4+
__version__ = "0.2.3"
55
__author__ = "dotenv"
66
__author_email__ = "[email protected]"
77
__license__ = "BSD-3-Clause"

0 commit comments

Comments
 (0)