From e6af9321d9a0340d9cf36bb78e1ac4f1a2ef8a11 Mon Sep 17 00:00:00 2001 From: Georg Krause Date: Fri, 12 May 2023 09:02:14 +0200 Subject: [PATCH] Version bump and changelog for 1.3.0-rc6 --- CHANGELOG | 17 +++++++++++++++++ api/funkwhale_api/__init__.py | 2 +- 2 files changed, 18 insertions(+), 1 deletion(-) diff --git a/CHANGELOG b/CHANGELOG index 6fb5ebab8..91f31c452 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -10,6 +10,23 @@ This changelog is viewable on the web at https://docs.funkwhale.audio/changelog. .. towncrier +1.3.0-rc6 (2023-05-12) +---------------------- + +Updates since 1.3.0-rc5 + +- Add systemd update instructions to Debian upgrade instructions (#1966) +- Fix broken links in CHANGELOG (#1976) +- Add generic upgrade instructions to Docker postgres documentation (#2049) +- Added Nginx regeneration instructions to Debian update guide (#2050) +- Fixed mobile player element widths (#2054) +- Allow summary field of actors to be blank. This leaves actors valid that have a blank (`""`) summary field and allows follows from those. +- Fix front album tracks count translation +- Prefer str over dict for the CACHE_URL api setting\ + This fix the ability to reuse the CACHE_URL with other settings such as\ + CELERY_BROKER_URL.\ + Move api docker hardcoded env vars in the settings module\ + 1.3.0-rc5 (2023-03-26) ---------------------- diff --git a/api/funkwhale_api/__init__.py b/api/funkwhale_api/__init__.py index b833b7397..02f4a400a 100644 --- a/api/funkwhale_api/__init__.py +++ b/api/funkwhale_api/__init__.py @@ -1,4 +1,4 @@ -__version__ = "1.3.0-rc5" +__version__ = "1.3.0-rc6" __version_info__ = tuple( [ int(num) if num.isdigit() else num