Release Zulip Server 9.0.

This commit is contained in:
Tim Abbott 2024-07-25 12:24:37 -07:00
parent 7a1f5765b7
commit a8368ca3c3
3 changed files with 14 additions and 8 deletions

View File

@ -20,6 +20,10 @@ format used by the Zulip server that they are interacting with.
## Changes in Zulip 9.0 ## Changes in Zulip 9.0
**Feature level 277**
No changes; feature level used for Zulip 9.0 release.
**Feature level 276** **Feature level 276**
* [Markdown message formatting](/api/message-formatting#image-previews): * [Markdown message formatting](/api/message-formatting#image-previews):

View File

@ -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 Server 9.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 9.x series ## Zulip Server 9.x series
### Zulip Server 9.0 ### Zulip Server 9.0
_Draft release notes_ _Released 2024-07-25_
#### Highlights #### Highlights
@ -4108,7 +4110,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 9.0](#upgrade-notes-for-90) - [Upgrade notes for 9.0](#upgrade-notes-for-90)
- [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)

View File

@ -1,6 +1,6 @@
import os import os
ZULIP_VERSION = "9.0-beta1+git" ZULIP_VERSION = "9.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 = "8.0" LATEST_MAJOR_VERSION = "9.0"
LATEST_RELEASE_VERSION = "8.4" LATEST_RELEASE_VERSION = "9.0"
LATEST_RELEASE_ANNOUNCEMENT = "https://blog.zulip.com/2023/12/15/zulip-8-0-released/" LATEST_RELEASE_ANNOUNCEMENT = "https://blog.zulip.com/2023/12/15/zulip-8-0-released/"
# Versions of the desktop app below DESKTOP_MINIMUM_VERSION will be # Versions of the desktop app below DESKTOP_MINIMUM_VERSION will be
@ -34,7 +34,7 @@ DESKTOP_WARNING_VERSION = "5.9.3"
# 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 = 276 # Last bumped for data-original-dimensions API_FEATURE_LEVEL = 277 # Last bumped for Zulip 9.0
# Bump the minor PROVISION_VERSION to indicate that folks should provision # Bump the minor PROVISION_VERSION to indicate that folks should provision