diff options
author | Stephen Finucane <stephen@that.guru> | 2020-10-04 12:18:11 +0100 |
---|---|---|
committer | Stephen Finucane <stephen@that.guru> | 2020-12-13 20:23:07 +0000 |
commit | d3aaec83559c9575fff85fb4c743ce5330eb96ff (patch) | |
tree | 98a6b3c777b9c7d1d54bff3244367c306e108049 | |
parent | 9a54bf4bfc54bda784db61035874db99cdc97e62 (diff) | |
download | patchwork-d3aaec83559c9575fff85fb4c743ce5330eb96ff.tar patchwork-d3aaec83559c9575fff85fb4c743ce5330eb96ff.tar.gz |
Release 3.0.0
Major version bump because of Python 2.7 removal and the unfortunately
large DB migration.
Signed-off-by: Stephen Finucane <stephen@that.guru>
-rw-r--r-- | patchwork/__init__.py | 2 | ||||
-rw-r--r-- | releasenotes/notes/prelude-3_0-5a4905b9df203595.yaml | 8 |
2 files changed, 9 insertions, 1 deletions
diff --git a/patchwork/__init__.py b/patchwork/__init__.py index 545a53b..6fb5472 100644 --- a/patchwork/__init__.py +++ b/patchwork/__init__.py @@ -5,7 +5,7 @@ from patchwork.version import get_latest_version -VERSION = (3, 0, 0, 'alpha', 0) +VERSION = (3, 0, 0) __version__ = get_latest_version(VERSION) diff --git a/releasenotes/notes/prelude-3_0-5a4905b9df203595.yaml b/releasenotes/notes/prelude-3_0-5a4905b9df203595.yaml new file mode 100644 index 0000000..7edaffd --- /dev/null +++ b/releasenotes/notes/prelude-3_0-5a4905b9df203595.yaml @@ -0,0 +1,8 @@ +--- +prelude: | + There are two main changes in this release: the removal of Python 2.7 support + and the resolution of the longstanding performance issues introduced by the + ``Submission`` model. On top of this, there is the usual bump in + requirements, a significant amount of fixes to the documentation for the + REST API, and the squashing of all migrations introduced in versions up to + and including v2.2.0. |