diff --git a/docs/overview/changelog.md b/docs/overview/changelog.md index 33b48eb7a9..011801bc5b 100644 --- a/docs/overview/changelog.md +++ b/docs/overview/changelog.md @@ -64,6 +64,18 @@ in bursts. system was always a hack, was only ever used for one endpoint, and did not provide a measureable latency benefit over HTTP/2. +### 2.1.4 -- 2020-04-16 + +- Fixed a regression in 2.1.3 that impacted creating the very first + organization via our data import tools. +- Remove the old `tsearch_extras` postgres extension, which was causing + an exception restoring backups on fresh Zulip servers that had been + generated on systems that had been upgraded from older Zulip releases. +- Removed fetching GitHub contributor data from static asset build + process. This makes `upgrade-zulip-from-git` much more reliable. +- Updated translation data from Transifex. +- Support for Ubuntu 16.04 Xenial and Debian 9 Stretch is now deprecated. + ### 2.1.3 -- 2020-04-01 - CVE-2020-9444: Prevent reverse tabnapping attacks. diff --git a/version.py b/version.py index 0d8179a3fc..1a5b41714a 100644 --- a/version.py +++ b/version.py @@ -10,7 +10,7 @@ if os.path.exists(zulip_git_version_file): ZULIP_VERSION = version LATEST_MAJOR_VERSION = "2.1" -LATEST_RELEASE_VERSION = "2.1.3" +LATEST_RELEASE_VERSION = "2.1.4" LATEST_RELEASE_ANNOUNCEMENT = "https://blog.zulip.org/2019/12/13/zulip-2-1-released/" LATEST_DESKTOP_VERSION = "5.0.0"