Skip to content

Commit

Permalink
Bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
ecederstrand committed May 11, 2023
1 parent cb3622d commit ee65628
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 4 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,11 @@ HEAD
----


5.0.3
-----
- Bugfix release


5.0.2
-----
- Fix bug where certain folders were being assigned the wrong Python class.
Expand Down
2 changes: 1 addition & 1 deletion exchangelib/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
from .transport import BASIC, CBA, DIGEST, GSSAPI, NTLM, OAUTH2, SSPI
from .version import Build, Version

__version__ = "5.0.2"
__version__ = "5.0.3"

__all__ = [
"__version__",
Expand Down
9 changes: 6 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,13 @@
* Install pdoc3, wheel, twine
* Bump version in exchangelib/__init__.py
* Bump version in CHANGELOG.md
* Generate documentation: pdoc3 --html exchangelib -o docs --force && pre-commit run end-of-file-fixer
* Generate documentation:
rm -r docs/exchangelib && pdoc3 --html exchangelib -o docs --force && pre-commit run end-of-file-fixer
* Commit and push changes
* Build package: rm -rf build dist exchangelib.egg-info && python setup.py sdist bdist_wheel
* Push to PyPI: twine upload dist/*
* Build package:
rm -rf build dist exchangelib.egg-info && python setup.py sdist bdist_wheel
* Push to PyPI:
twine upload dist/*
* Create release on GitHub
"""
from pathlib import Path
Expand Down

0 comments on commit ee65628

Please sign in to comment.