Version bump and changelog for 1.2.5

1373-login-form-move-reset-your-password-link 1.2.5
Georg Krause 2022-05-07 13:48:31 +02:00
rodzic 33872cf6d7
commit 21b3c7255e
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: 2970D504B2183D22
6 zmienionych plików z 55 dodań i 6 usunięć

Wyświetl plik

@ -10,6 +10,58 @@ This changelog is viewable on the web at https://docs.funkwhale.audio/changelog.
.. towncrier
1.2.5 (2022-05-07)
------------------
Upgrade instructions are available at
https://docs.funkwhale.audio/admin/upgrading.html
Enhancements:
- Parameterize the default S3 ACL when uploading objects. (#1319)
Bugfixes:
- Fix stopped player to not show 00:00 when loading a track (#1432)
- Fixes channel page (#1729) (1729)
Committers:
- Georg Krause
- Marcos
- MattDHarding
- Stuart Begley-Miller
Contributors to our Issues:
- Agate
- Beto Dealmeida
- Cam Sweeney
- Ciarán Ainsworth
- Georg Krause
- JuniorJPDJ
- Marcos Peña
- Mathieu Jourdan
- MattDHarding
- Micha Gläß-Stöcker
- Stuart Begley-Miller
- Tony Wasserka
- jovuit
- petitminion
- pullopen
Contributors to our Merge Requests:
- Ciarán Ainsworth
- Georg Krause
- JuniorJPDJ
- Marcos Peña
- MattDHarding
- PhieF
- Stuart Begley-Miller
- petitminion
1.2.4 (2022-04-23)
------------------

Wyświetl plik

@ -759,13 +759,13 @@ To make a new 3.4 release::
git pull
# compile changelog
towncrier --version $NEXT_RELEASE --yes
towncrier build --version $NEXT_RELEASE
# polish changelog
# - update the date
# - look for typos
# - add list of contributors via `python3 scripts/get-contributions-stats.py $NEXT_RELEASE`
git log $PREVIOUS_RELEASE.. --format="%aN" --reverse | sort | uniq # Get all commit authors since last release
git log $PREVIOUS_RELEASE.. --format="- %aN" --reverse | sort | uniq # Get all commit authors since last release
nano CHANGELOG
# Set the `__version__` variable to $NEXT_RELEASE

Wyświetl plik

@ -1,5 +1,5 @@
# -*- coding: utf-8 -*-
__version__ = "1.2.4"
__version__ = "1.2.5"
__version_info__ = tuple(
[
int(num) if num.isdigit() else num

Wyświetl plik

@ -1 +0,0 @@
Parameterize the default S3 ACL when uploading objects. (#1319)

Wyświetl plik

@ -1 +0,0 @@
Fix stopped player to not show 00:00 when loading a track (#1432)

Wyświetl plik

@ -1 +0,0 @@
Fixes channel page (#1729) (1729)