Skip to content

Commit ee65628

Browse files
committedMay 11, 2023
Bump version
1 parent cb3622d commit ee65628

File tree

3 files changed

+12
-4
lines changed

3 files changed

+12
-4
lines changed
 

‎CHANGELOG.md

+5
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,11 @@ HEAD
55
----
66

77

8+
5.0.3
9+
-----
10+
- Bugfix release
11+
12+
813
5.0.2
914
-----
1015
- Fix bug where certain folders were being assigned the wrong Python class.

‎exchangelib/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@
3636
from .transport import BASIC, CBA, DIGEST, GSSAPI, NTLM, OAUTH2, SSPI
3737
from .version import Build, Version
3838

39-
__version__ = "5.0.2"
39+
__version__ = "5.0.3"
4040

4141
__all__ = [
4242
"__version__",

‎setup.py

+6-3
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,13 @@
44
* Install pdoc3, wheel, twine
55
* Bump version in exchangelib/__init__.py
66
* Bump version in CHANGELOG.md
7-
* Generate documentation: pdoc3 --html exchangelib -o docs --force && pre-commit run end-of-file-fixer
7+
* Generate documentation:
8+
rm -r docs/exchangelib && pdoc3 --html exchangelib -o docs --force && pre-commit run end-of-file-fixer
89
* Commit and push changes
9-
* Build package: rm -rf build dist exchangelib.egg-info && python setup.py sdist bdist_wheel
10-
* Push to PyPI: twine upload dist/*
10+
* Build package:
11+
rm -rf build dist exchangelib.egg-info && python setup.py sdist bdist_wheel
12+
* Push to PyPI:
13+
twine upload dist/*
1114
* Create release on GitHub
1215
"""
1316
from pathlib import Path

0 commit comments

Comments
 (0)