diff --git a/docs/installguide/release_notes.rst b/docs/installguide/release_notes.rst index 905001a02c..0935b24c20 100644 --- a/docs/installguide/release_notes.rst +++ b/docs/installguide/release_notes.rst @@ -8,6 +8,14 @@ to read the release notes. upgrading from ``0.16.x`` to ``0.17.x`` is fine - but upgrading from ``0.15.x`` to ``0.17.x`` is not guaranteed to work. +0.17.3 +------ + +Bug fixes +^^^^^^^^^ + + * Remaining content titles and message IDs in Coach Reports translated :url-issue:`5511` :url-issue:`5509` + 0.17.2 ------ diff --git a/kalite/version.py b/kalite/version.py index 2ba8934974..d624ffec2d 100644 --- a/kalite/version.py +++ b/kalite/version.py @@ -3,7 +3,7 @@ # Must also be of the form N.N.N for internal use, where N is a non-negative integer MAJOR_VERSION = "0" MINOR_VERSION = "17" -PATCH_VERSION = "2" +PATCH_VERSION = "3" VERSION = "%s.%s.%s" % (MAJOR_VERSION, MINOR_VERSION, PATCH_VERSION) SHORTVERSION = "%s.%s" % (MAJOR_VERSION, MINOR_VERSION)