Skip to content

Commit

Permalink
Release Zulip Server 3.0.
Browse files Browse the repository at this point in the history
  • Loading branch information
timabbott committed Jul 16, 2020
1 parent ba55bc6 commit d74664a
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 8 deletions.
4 changes: 1 addition & 3 deletions docs/overview/changelog.md
Expand Up @@ -7,9 +7,7 @@ All notable changes to the Zulip server are documented in this file.
This section lists notable unreleased changes; it is generally updated
in bursts.

### 3.0-rc2 -- July 14, 2020

We expect this to become the 3.0 final release in mid July.
### 3.0 -- July 16, 2020

#### Highlights

Expand Down
2 changes: 2 additions & 0 deletions docs/subsystems/release-checklist.md
Expand Up @@ -34,6 +34,8 @@ preparing a new release.
* Do final updates to `changelog.md`, for any final changes and with
any revisions from the draft blog post. (And the date!)
* Update `ZULIP_VERSION` and `LATEST_RELEASE_VERSION` in `version.py`.
* For major releases, update `API_FEATURE_LEVEL` to a feature level
for the final release, and document a reserved range.
* Use `build-release-tarball` to generate a final release tarball.
* Post the release tarball on https://www.zulip.org/dist/releases/ :
add the file, update the `zulip-server-latest.tar.gz` symlink, and
Expand Down
4 changes: 4 additions & 0 deletions templates/zerver/api/changelog.md
Expand Up @@ -10,6 +10,10 @@ below features are supported.

## Changes in Zulip 3.0

**Feature level 25**

No changes; feature level used for Zulip 3.0 release.

**Feature level 24**

* The `!avatar()` and `!gravatar()` markdown syntax, which was never
Expand Down
10 changes: 5 additions & 5 deletions version.py
@@ -1,6 +1,6 @@
import os

ZULIP_VERSION = "3.0-rc2+git"
ZULIP_VERSION = "3.0"
# Add information on number of commits and commit hash to version, if available
zulip_git_version_file = os.path.join(os.path.dirname(os.path.abspath(__file__)), 'zulip-git-version')
if os.path.exists(zulip_git_version_file):
Expand All @@ -9,9 +9,9 @@
if version:
ZULIP_VERSION = version

LATEST_MAJOR_VERSION = "2.1"
LATEST_RELEASE_VERSION = "2.1.7"
LATEST_RELEASE_ANNOUNCEMENT = "https://blog.zulip.org/2019/12/13/zulip-2-1-released/"
LATEST_MAJOR_VERSION = "3.0"
LATEST_RELEASE_VERSION = "3.0"
LATEST_RELEASE_ANNOUNCEMENT = "https://blog.zulip.org/2020/07/16/zulip-3-0-released/"
LATEST_DESKTOP_VERSION = "5.3.0"

# Versions of the desktop app below DESKTOP_MINIMUM_VERSION will be
Expand All @@ -29,7 +29,7 @@
#
# Changes should be accompanied by documentation explaining what the
# new level means in templates/zerver/api/changelog.md.
API_FEATURE_LEVEL = 24
API_FEATURE_LEVEL = 25

# 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
Expand Down

0 comments on commit d74664a

Please sign in to comment.