mirror of https://github.com/zulip/zulip.git
Release Zulip Server 5.0.
This commit is contained in:
parent
836529f826
commit
d308c694ba
|
@ -1,11 +1,13 @@
|
|||
# Version history
|
||||
|
||||
This page the release history for the Zulip server. See also the
|
||||
[Zulip release lifecycle](release-lifecycle.md).
|
||||
This page contains the release history for the Zulip 5.x stable
|
||||
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 5.x series
|
||||
|
||||
### 5.0 -- unreleased
|
||||
### 5.0 -- 2022-03-29
|
||||
|
||||
This section is an incomplete draft of the release notes for the next
|
||||
major release, and is only updated occasionally. See the [commit
|
||||
|
@ -186,6 +188,8 @@ log][commit-log] for an up-to-date list of raw changes.
|
|||
software from flagging invitations.
|
||||
- Added support for uploading animated PNGs as custom emoji.
|
||||
- Renamed "Night mode" to "Dark theme".
|
||||
- Added the mobile app's notification sound to desktop sound options,
|
||||
as "Chime".
|
||||
- Reworked the `manage.py help` interface to hide Django commands that are
|
||||
useless or harmful to run on a production system. Also deleted
|
||||
several useless management commands.
|
||||
|
@ -2576,7 +2580,7 @@ running a version from before 1.7 should upgrade directly to 1.7.1.
|
|||
This section links to the upgrade notes from past releases, so you can
|
||||
easily read them all when upgrading across multiple releases.
|
||||
|
||||
- [Draft upgrade notes for 5.0](#upgrade-notes-for-50)
|
||||
- [Upgrade notes for 5.0](#upgrade-notes-for-50)
|
||||
- [Upgrade notes for 4.0](#upgrade-notes-for-40)
|
||||
- [Upgrade notes for 3.0](#upgrade-notes-for-30)
|
||||
- [Upgrade notes for 2.1.5](#upgrade-notes-for-215)
|
||||
|
|
|
@ -20,6 +20,10 @@ format used by the Zulip server that they are interacting with.
|
|||
|
||||
## Changes in Zulip 5.0
|
||||
|
||||
**Feature level 122**
|
||||
|
||||
No changes; feature level used for Zulip 5.0 release.
|
||||
|
||||
**Feature level 121**
|
||||
|
||||
* [`GET /events`](/api/get-events): Added `message_details` field
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
import os
|
||||
|
||||
ZULIP_VERSION = "5.0-dev+git"
|
||||
ZULIP_VERSION = "5.0"
|
||||
|
||||
# Add information on number of commits and commit hash to version, if available
|
||||
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_MERGE_BASE = lines.pop(0).strip()
|
||||
|
||||
LATEST_MAJOR_VERSION = "4.0"
|
||||
LATEST_RELEASE_VERSION = "4.11"
|
||||
LATEST_MAJOR_VERSION = "5.0"
|
||||
LATEST_RELEASE_VERSION = "5.0"
|
||||
LATEST_RELEASE_ANNOUNCEMENT = "https://blog.zulip.com/2021/05/13/zulip-4-0-released/"
|
||||
|
||||
# Versions of the desktop app below DESKTOP_MINIMUM_VERSION will be
|
||||
|
@ -33,7 +33,7 @@ DESKTOP_WARNING_VERSION = "5.4.3"
|
|||
# Changes should be accompanied by documentation explaining what the
|
||||
# new level means in templates/zerver/api/changelog.md, as well as
|
||||
# "**Changes**" entries in the endpoint's documentation in `zulip.yaml`.
|
||||
API_FEATURE_LEVEL = 121
|
||||
API_FEATURE_LEVEL = 122
|
||||
|
||||
# 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
|
||||
|
|
Loading…
Reference in New Issue