Skip to content

Commit

Permalink
Prepare 2.2.4
Browse files Browse the repository at this point in the history
  • Loading branch information
mar10 committed Aug 11, 2017
1 parent e8ee888 commit eeabb7d
Show file tree
Hide file tree
Showing 4 changed files with 21 additions and 7 deletions.
12 changes: 9 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,13 @@
# CHANGES
# Changelog

## 2.2.3 / Unreleased
## 2.2.5 / Unreleased

-
## 2.2.4 / 2017-08-11

- Fix #75: Return 401 when auth method is not supported
- Fix #77: removeProperty call to not lose dryRun, otherwise removeProperty is
called twice for real
- Fix #79: Prevent error when missing environment variable


## 2.2.2 / 2017-06-23
Expand All @@ -11,6 +16,7 @@
- Fix #67: lock manager returns timeout negative seconds
- Fix #71: Attempts to unlock a nonexistent resource cause an internal server error
- Fix #73: Failed on processing non-iso-8859-1 characters on Python 3
- MSI setup uses Python 3.5


## 2.2.1 / 2017-02-25
Expand Down
2 changes: 1 addition & 1 deletion requirements-dev.txt
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ pytest-cov~=1.8
recommonmark
requests
sphinx~=1.4
#sphinxcontrib-napoleon~=0.3
tox~=2.0
twine
WebTest~=2.0
wheel
12 changes: 10 additions & 2 deletions tools/release_wsgidav.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -70,12 +70,20 @@ if($LastExitCode -ne 0) {
# This call causes setup.py to NOT import and use cx_Freeze:

#python -m setup egg_info --tag-build="" -D sdist bdist_wheel --universal
python -m setup egg_info --tag-build="" -D sdist bdist_wheel --universal register upload --sign --identity="Martin Wendt"
#python -m setup egg_info --tag-build="" -D sdist bdist_wheel --universal register upload --sign --identity="Martin Wendt"
python -m setup egg_info --tag-build="" -D sdist bdist_wheel --universal

if($LastExitCode -ne 0) {
Write-Error "Create Wheel and/or upload failed with exit code $LastExitCode"
Exit 1
}

#--- Done.
"We should upload the MSI and update the release on GitHub"

"SUCCESS."
"We should now:"
" 1. twine upload dist\WsgiDAV-x.y.z.tar.gz"
" 2. twine upload dist\WsgiDAV-x.y.z-py2.py3-none-any.whl"
" 3. twine upload dist\WsgiDAV-x.y.z-win32.msi"
" 4. Release on GitHub"
" 5. Bump version and update "
2 changes: 1 addition & 1 deletion wsgidav/_version.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@
http://peak.telecommunity.com/DevCenter/setuptools#tagging-and-daily-build-or-snapshot-releases
Example "1.2.0b1", "1.2.0pre1" or "1.2.0"
"""
__version__ = "2.2.3"
__version__ = "2.2.4"

0 comments on commit eeabb7d

Please sign in to comment.