Release Zulip Server 7.0.

This commit is contained in:
Tim Abbott 2023-05-30 17:58:42 -07:00
parent 383bffb88b
commit b00ce1bad1
3 changed files with 15 additions and 12 deletions

View File

@ -20,6 +20,10 @@ format used by the Zulip server that they are interacting with.
## Changes in Zulip 7.0 ## Changes in Zulip 7.0
**Feature level 185**
No changes; feature level used for Zulip 7.0 release.
**Feature level 184** **Feature level 184**
* [`PATCH /scheduled_messages/<int:scheduled_message_id>`](/api/update-scheduled-message): * [`PATCH /scheduled_messages/<int:scheduled_message_id>`](/api/update-scheduled-message):

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 7.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 7.x series ## Zulip 7.x series
### 7.0 -- unreleased ### 7.0 -- 2023-05-31
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 all changes.
#### Highlights #### Highlights
@ -82,6 +80,7 @@ log][commit-log] for an up-to-date list of all changes.
- Improved subject lines for email notifications in topics that have - Improved subject lines for email notifications in topics that have
been resolved so that email clients will thread them with the been resolved so that email clients will thread them with the
pre-resolution topic. pre-resolution topic.
- Improved how the Slack data import tool handles Slack threads.
- Improved the Slack incoming integration's handling of fancier Slack - Improved the Slack incoming integration's handling of fancier Slack
syntax. syntax.
- Improved notification format for most Git integrations. - Improved notification format for most Git integrations.
@ -3206,7 +3205,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 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 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)
- [Upgrade notes for 4.0](#upgrade-notes-for-40) - [Upgrade notes for 4.0](#upgrade-notes-for-40)

View File

@ -1,6 +1,6 @@
import os import os
ZULIP_VERSION = "7.0-beta3+git" ZULIP_VERSION = "7.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 = "6.0" LATEST_MAJOR_VERSION = "7.0"
LATEST_RELEASE_VERSION = "6.2" LATEST_RELEASE_VERSION = "7.0"
LATEST_RELEASE_ANNOUNCEMENT = "https://blog.zulip.com/2022/11/17/zulip-6-0-released/" LATEST_RELEASE_ANNOUNCEMENT = "https://blog.zulip.com/2022/11/17/zulip-6-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.4.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 = 184 API_FEATURE_LEVEL = 185
# 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