diff --git a/docs/index.rst b/docs/index.rst index 16b60c1..d5d33f4 100644 --- a/docs/index.rst +++ b/docs/index.rst @@ -23,7 +23,9 @@ This cache feature was originally part of `coderedcms `_ and is in use successfully on live production sites. -Requires Wagtail >= 2.0 +Version 1.x supports Wagtail 2. + +Version 2.x supports Wagtail 3. Contents diff --git a/docs/releases/index.rst b/docs/releases/index.rst index a3117e3..fbf80a8 100644 --- a/docs/releases/index.rst +++ b/docs/releases/index.rst @@ -4,6 +4,7 @@ Release Notes .. toctree:: :maxdepth: 1 + v2.0.0 v1.1.0 v1.0.2 v1.0.1 diff --git a/docs/releases/v2.0.0.rst b/docs/releases/v2.0.0.rst new file mode 100644 index 0000000..9096320 --- /dev/null +++ b/docs/releases/v2.0.0.rst @@ -0,0 +1,10 @@ +2.0.0 release notes +=================== + +* Includes everything from :doc:`1.1 ` released in tandem. + +* Includes new SVG icon in settings panel. Previously this icon was either the + cog, or the lighthing bolt if ``wagtailfontawesome`` was installed. + +* Supports Wagtail 3 and only Wagtail 3. Wagtail 2 support will be maintained in + the 1.x series as needed. diff --git a/wagtailcache/__init__.py b/wagtailcache/__init__.py index bbfaac2..0cee000 100644 --- a/wagtailcache/__init__.py +++ b/wagtailcache/__init__.py @@ -1,4 +1,4 @@ -release = ["1", "1", "0"] +release = ["2", "0", "0"] __version__ = "{0}.{1}.{2}".format(release[0], release[1], release[2]) __shortversion__ = "{0}.{1}".format(release[0], release[1])