Release Zulip Server 4.0.

This commit is contained in:
Tim Abbott 2021-05-13 12:29:57 -07:00
parent 2ee6e1318d
commit 825192a051
3 changed files with 14 additions and 12 deletions

View File

@ -1,15 +1,13 @@
# Version history # Version history
This page the release history for the Zulip server. See also the This page contains the release history for the Zulip 4.x stable
[Zulip release lifecycle](../overview/release-lifecycle.md). release series. See the [current Zulip changelog][latest-changelog]
for newer release series, or the [commit log][commit-log] for an
up-to-date list of raw changes.
## Zulip 4.x series ## Zulip 4.x series
### 4.0 -- Unreleased ### 4.0 -- 2021-05-13
This section is an incomplete draft of the release notes for the next
major release, and is only updated occasionally. See the [commit
log][commit-log] for an up-to-date list of raw changes.
#### Highlights #### Highlights
@ -2119,7 +2117,7 @@ Zulip apps.
This section links to the upgrade notes from past releases, so you can This section links to the upgrade notes from past releases, so you can
easily read them all when upgrading across multiple releases. easily read them all when upgrading across multiple releases.
* [Draft upgrade notes for 4.0](#upgrade-notes-for-4-0) * [Upgrade notes for 4.0](#upgrade-notes-for-4-0)
* [Upgrade notes for 3.0](#upgrade-notes-for-3-0) * [Upgrade notes for 3.0](#upgrade-notes-for-3-0)
* [Upgrade notes for 2.1.5](#upgrade-notes-for-2-1-5) * [Upgrade notes for 2.1.5](#upgrade-notes-for-2-1-5)
* [Upgrade notes for 2.1.0](#upgrade-notes-for-2-1-0) * [Upgrade notes for 2.1.0](#upgrade-notes-for-2-1-0)

View File

@ -11,6 +11,10 @@ below features are supported.
## Changes in Zulip 4.0 ## Changes in Zulip 4.0
**Feature level 65**
No changes; feature level used for Zulip 3.0 release.
**Feature level 64** **Feature level 64**
* `PATCH /streams/{stream_id}`: Removed unnecessary JSON-encoding of string * `PATCH /streams/{stream_id}`: Removed unnecessary JSON-encoding of string

View File

@ -1,6 +1,6 @@
import os import os
ZULIP_VERSION = "4.0-rc1+git" ZULIP_VERSION = "4.0"
# Add information on number of commits and commit hash to version, if available # Add information on number of commits and commit hash to version, if available
zulip_git_version_file = os.path.join( zulip_git_version_file = os.path.join(
@ -13,8 +13,8 @@ if os.path.exists(zulip_git_version_file):
ZULIP_VERSION = lines.pop(0).strip() ZULIP_VERSION = lines.pop(0).strip()
ZULIP_MERGE_BASE = lines.pop(0).strip() ZULIP_MERGE_BASE = lines.pop(0).strip()
LATEST_MAJOR_VERSION = "3.0" LATEST_MAJOR_VERSION = "4.0"
LATEST_RELEASE_VERSION = "3.0" LATEST_RELEASE_VERSION = "4.0"
LATEST_RELEASE_ANNOUNCEMENT = "https://blog.zulip.org/2020/07/16/zulip-3-0-released/" LATEST_RELEASE_ANNOUNCEMENT = "https://blog.zulip.org/2020/07/16/zulip-3-0-released/"
# Versions of the desktop app below DESKTOP_MINIMUM_VERSION will be # Versions of the desktop app below DESKTOP_MINIMUM_VERSION will be
@ -32,7 +32,7 @@ DESKTOP_WARNING_VERSION = "5.4.3"
# #
# Changes should be accompanied by documentation explaining what the # Changes should be accompanied by documentation explaining what the
# new level means in templates/zerver/api/changelog.md. # new level means in templates/zerver/api/changelog.md.
API_FEATURE_LEVEL = 64 API_FEATURE_LEVEL = 65
# Bump the minor PROVISION_VERSION to indicate that folks should provision # Bump the minor PROVISION_VERSION to indicate that folks should provision
# only when going from an old version of the code to a newer version. Bump # only when going from an old version of the code to a newer version. Bump