Skip to content

Commit

Permalink
Release Review Board 5.0.5.
Browse files Browse the repository at this point in the history
  • Loading branch information
chipx86 committed Jun 20, 2023
1 parent cd915d5 commit 6cdde1e
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 7 deletions.
4 changes: 2 additions & 2 deletions contrib/docker/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -28,12 +28,12 @@ ARG REVIEWBOARD_VERSION
# Power Pack version to install.
#
# This can be in X.Y or X.Y.Z form.
ARG POWERPACK_VERSION=5.1
ARG POWERPACK_VERSION=5.2

# Review Bot extension version to install.
#
# This can be in X.Y or X.Y.Z form.
ARG REVIEWBOT_VERSION=3.1
ARG REVIEWBOT_VERSION=3.2

# Extra extension packages needed by the server.
#
Expand Down
2 changes: 1 addition & 1 deletion docs/releasenotes/5.0.5.rst
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
Review Board 5.0.5 Release Notes
================================

**Release date**: TBD
**Release date**: June 20, 2023


Installation/Upgrade
Expand Down
2 changes: 1 addition & 1 deletion reviewboard/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
#:
#: (Major, Minor, Micro, Patch, alpha/beta/rc/final, Release Number, Released)
#:
VERSION = (5, 0, 5, 0, 'alpha', 0, False)
VERSION = (5, 0, 5, 0, 'final', 0, True)


def get_version_string():
Expand Down
7 changes: 4 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env python
#!/usr/bin/env python3
#
# Setup script for Review Board.
#
Expand Down Expand Up @@ -37,10 +37,11 @@

if pyver < PYTHON_MIN_VERSION:
sys.stderr.write(
'Review Board %s is incompatible with your version of Python.\n'
'Review Board %s is incompatible with your version of Python '
'(%s.%s).\n'
'Please install Review Board 4.0.x or upgrade to Python %s or '
'newer.\n'
% (get_package_version(), PYTHON_MIN_VERSION_STR))
% (pyver, get_package_version(), PYTHON_MIN_VERSION_STR))
sys.exit(1)


Expand Down

0 comments on commit 6cdde1e

Please sign in to comment.