diff --git a/CHANGELOG b/CHANGELOG index 88659cf37..e7d2afdad 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -10,6 +10,25 @@ This changelog is viewable on the web at https://docs.funkwhale.audio/changelog. .. towncrier +1.3.0-rc2 (2023-01-23) +---------------------- + +Update since 1.3.0-rc1: + +Enhancements: + +- Retry fetching new radio track 5 times if error occurred before resetting radio session (#2022) + +Bugfixes: + +- Docker setup: do not export the API port 5000 publicly +- Fix artist name submission in Maloja plugin + +Deprecations: + +- That's the last minor version series that supports python3.7. Funkwhale 1.4 will remove support for it. #1693 +- Deprecate the api manage.py script in favor of the funkwhale-manage entrypoint + 1.3.0-rc1 (2023-01-20) ---------------------- diff --git a/api/funkwhale_api/__init__.py b/api/funkwhale_api/__init__.py index f48ac6c2b..b8b1135d4 100644 --- a/api/funkwhale_api/__init__.py +++ b/api/funkwhale_api/__init__.py @@ -1,4 +1,4 @@ -__version__ = "1.3.0-rc1" +__version__ = "1.3.0-rc2" __version_info__ = tuple( [ int(num) if num.isdigit() else num