diff --git a/docs/changelog.rst b/docs/changelog.rst index f1c80af79..f80445dde 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -1,6 +1,13 @@ Changelog ######### +2.2.1 +===== + +* `Kyle Lucy`_ reported a bug quickly after the release of 2.2.0 where we broke + the ``DISABLE_LOGIN`` feature: `#392`_. + + 2.2.0 ===== @@ -13,6 +20,7 @@ Changelog * `Kilian Koeltzsch`_ noticed a bug in how we capture & automatically create tags, so that's fixed now too: `#384`_. + 2.1.0 ===== @@ -546,6 +554,7 @@ bulk of the work on this big change. .. _#386: https://github.com/danielquinn/paperless/issues/386 .. _#391: https://github.com/danielquinn/paperless/pull/391 .. _#390: https://github.com/danielquinn/paperless/pull/390 +.. _#392: https://github.com/danielquinn/paperless/issues/392 .. _pipenv: https://docs.pipenv.org/ .. _a new home on Docker Hub: https://hub.docker.com/r/danielquinn/paperless/ diff --git a/src/paperless/version.py b/src/paperless/version.py index 2de334c18..0fbece706 100644 --- a/src/paperless/version.py +++ b/src/paperless/version.py @@ -1 +1 @@ -__version__ = (2, 2, 0) +__version__ = (2, 2, 1)