Skip to content

Commit

Permalink
Release 0.2.2
Browse files Browse the repository at this point in the history
  • Loading branch information
jelmer committed May 14, 2020
1 parent 30f3e4b commit 17f801d
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions NEWS
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
0.2.2 UNRELEASED
0.2.2 2020-05-14

* Fix use of xandikos.wsgi module in uwsgi. (Jelmer Vernooij)

0.2.1 2020-05-6
0.2.1 2020-05-06

* Add missing dependencies in setup.py. (Jelmer Vernooij)

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
from setuptools import find_packages, setup
import sys

version = "0.2.1"
version = "0.2.2"

with open('README.rst', encoding='utf-8') as f:
long_description = f.read()
Expand Down
2 changes: 1 addition & 1 deletion xandikos/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@

"""CalDAV/CardDAV server."""

__version__ = (0, 2, 1)
__version__ = (0, 2, 2)
version_string = '.'.join(map(str, __version__))

import defusedxml.ElementTree # noqa: This does some monkey-patching on-load

0 comments on commit 17f801d

Please sign in to comment.