From 9d36131649e68a5f7ed1eff1320106384c665de5 Mon Sep 17 00:00:00 2001 From: rlskoeser Date: Wed, 13 Sep 2023 18:32:51 -0400 Subject: [PATCH] Set version to 3.5 final and document changes --- CHANGELOG.rst | 5 ++++- cdhweb/__init__.py | 2 +- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 3247bcfa9..ce171b972 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -4,7 +4,10 @@ CHANGELOG 3.5 --- -- Added `wagtailcodeblock` to support formatted code in content pages +- As a content editor, I want to search for people by name when adding them to projects, events, or setting tem as blog post authors, so that I can easily lookup the correct person. +- As a content editor, I want an option to add formatted code to blog posts or other content pages, so I can share technical content clearly. +- update 404 and 500 error page images +- bugfix: project thumbnails not displaying on project card if project doesn't have a larger image associated 3.4.5 ----- diff --git a/cdhweb/__init__.py b/cdhweb/__init__.py index 5198db808..2c29e1ba0 100644 --- a/cdhweb/__init__.py +++ b/cdhweb/__init__.py @@ -1,4 +1,4 @@ -__version_info__ = (3, 5, 0, "dev") +__version_info__ = (3, 5, 0, None) # Dot-connect all but the last. Last is dash-connected if not None.