Skip to content

Commit

Permalink
0.0.3 release
Browse files Browse the repository at this point in the history
  • Loading branch information
s-m-e committed Feb 1, 2022
2 parents 60eb245 + 8616b40 commit ee36159
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 2 deletions.
4 changes: 4 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changes

## 0.0.3 (2022-02-01)

- FIX: Encoding of `README.md` explicitly set to UTF-8. Installation would fail on Windows otherwise.

## 0.0.2 (2022-02-01)

- Include docs into source distribution.
Expand Down
4 changes: 3 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,9 @@
]

# Fetch readme file
with open(os.path.join(os.path.dirname(__file__), "README.md")) as f:
with open(
os.path.join(os.path.dirname(__file__), "README.md"), mode="r", encoding="utf-8"
) as f:
long_description = f.read()

# Define source directory (path)
Expand Down
2 changes: 1 addition & 1 deletion src/scherbelberg/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
# VERSION
# +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

__version__ = "0.0.2"
__version__ = "0.0.3"

# +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
# EXPORT
Expand Down

0 comments on commit ee36159

Please sign in to comment.