diff --git a/docs/releases.rst b/docs/releases.rst index 3c9a4b7..9c1ae25 100644 --- a/docs/releases.rst +++ b/docs/releases.rst @@ -2,6 +2,18 @@ Release Notes ============= +2.0.0 +----- + +* There are no functional changes in this release. + +* Includes new SVG icon in settings panel. Previously this icon was either the + cog, or the line chart if ``wagtailfontawesome`` was installed. + +* Supports Wagtail 3 and only Wagtail 3. Wagtail 2 support will be maintained in + the 1.x series as needed. + + 1.0.0 ----- diff --git a/wagtailseo/__init__.py b/wagtailseo/__init__.py index e337535..655cefa 100644 --- a/wagtailseo/__init__.py +++ b/wagtailseo/__init__.py @@ -1,4 +1,4 @@ -release = ["1", "0", "0"] +release = ["2", "0", "0"] __version__ = "{0}.{1}.{2}".format(release[0], release[1], release[2]) __shortversion__ = "{0}.{1}".format(release[0], release[1])