mirror of https://github.com/zulip/zulip.git
Release Zulip Server 8.0.
This commit is contained in:
parent
bbd79120b5
commit
bc13f0ea37
|
@ -20,6 +20,10 @@ format used by the Zulip server that they are interacting with.
|
||||||
|
|
||||||
## Changes in Zulip 8.0
|
## Changes in Zulip 8.0
|
||||||
|
|
||||||
|
**Feature level 237**
|
||||||
|
|
||||||
|
No changes; feature level used for Zulip 8.0 release.
|
||||||
|
|
||||||
**Feature level 236**
|
**Feature level 236**
|
||||||
|
|
||||||
* [`POST /messages`](/api/send-message), [`POST
|
* [`POST /messages`](/api/send-message), [`POST
|
||||||
|
|
|
@ -1,13 +1,15 @@
|
||||||
# Version history
|
# Version history
|
||||||
|
|
||||||
This page contains the release history for the Zulip server. See also the
|
This page contains the release history for the Zulip 8.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 all changes.
|
||||||
|
|
||||||
## Zulip Server 8.x series
|
## Zulip Server 8.x series
|
||||||
|
|
||||||
### Zulip Server 8.0-beta2
|
### Zulip Server 8.0
|
||||||
|
|
||||||
_Released 2023-12-12_
|
_Released 2023-12-15_
|
||||||
|
|
||||||
#### Highlights
|
#### Highlights
|
||||||
|
|
||||||
|
@ -3704,7 +3706,7 @@ _Released 2015-10-19_
|
||||||
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 8.0](#upgrade-notes-for-80)
|
- [Upgrade notes for 8.0](#upgrade-notes-for-80)
|
||||||
- [Upgrade notes for 7.0](#upgrade-notes-for-70)
|
- [Upgrade notes for 7.0](#upgrade-notes-for-70)
|
||||||
- [Upgrade notes for 6.0](#upgrade-notes-for-60)
|
- [Upgrade notes for 6.0](#upgrade-notes-for-60)
|
||||||
- [Upgrade notes for 5.0](#upgrade-notes-for-50)
|
- [Upgrade notes for 5.0](#upgrade-notes-for-50)
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
import os
|
import os
|
||||||
|
|
||||||
ZULIP_VERSION = "8.0-beta2+git"
|
ZULIP_VERSION = "8.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 = "7.0"
|
LATEST_MAJOR_VERSION = "8.0"
|
||||||
LATEST_RELEASE_VERSION = "7.5"
|
LATEST_RELEASE_VERSION = "8.0"
|
||||||
LATEST_RELEASE_ANNOUNCEMENT = "https://blog.zulip.com/2023/05/31/zulip-7-0-released/"
|
LATEST_RELEASE_ANNOUNCEMENT = "https://blog.zulip.com/2023/05/31/zulip-7-0-released/"
|
||||||
|
|
||||||
# Versions of the desktop app below DESKTOP_MINIMUM_VERSION will be
|
# Versions of the desktop app below DESKTOP_MINIMUM_VERSION will be
|
||||||
|
@ -33,7 +33,7 @@ DESKTOP_WARNING_VERSION = "5.9.3"
|
||||||
# Changes should be accompanied by documentation explaining what the
|
# Changes should be accompanied by documentation explaining what the
|
||||||
# new level means in api_docs/changelog.md, as well as "**Changes**"
|
# new level means in api_docs/changelog.md, as well as "**Changes**"
|
||||||
# entries in the endpoint's documentation in `zulip.yaml`.
|
# entries in the endpoint's documentation in `zulip.yaml`.
|
||||||
API_FEATURE_LEVEL = 236
|
API_FEATURE_LEVEL = 237
|
||||||
|
|
||||||
# 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
|
||||||
|
|
Loading…
Reference in New Issue