Version bump and changelog for 1.2.5
This commit is contained in:
parent
33872cf6d7
commit
21b3c7255e
52
CHANGELOG
52
CHANGELOG
|
@ -10,6 +10,58 @@ This changelog is viewable on the web at https://docs.funkwhale.audio/changelog.
|
||||||
|
|
||||||
.. towncrier
|
.. 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)
|
1.2.4 (2022-04-23)
|
||||||
------------------
|
------------------
|
||||||
|
|
||||||
|
|
|
@ -759,13 +759,13 @@ To make a new 3.4 release::
|
||||||
git pull
|
git pull
|
||||||
|
|
||||||
# compile changelog
|
# compile changelog
|
||||||
towncrier --version $NEXT_RELEASE --yes
|
towncrier build --version $NEXT_RELEASE
|
||||||
|
|
||||||
# polish changelog
|
# polish changelog
|
||||||
# - update the date
|
# - update the date
|
||||||
# - look for typos
|
# - look for typos
|
||||||
# - add list of contributors via `python3 scripts/get-contributions-stats.py $NEXT_RELEASE`
|
# - 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
|
nano CHANGELOG
|
||||||
|
|
||||||
# Set the `__version__` variable to $NEXT_RELEASE
|
# Set the `__version__` variable to $NEXT_RELEASE
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
# -*- coding: utf-8 -*-
|
# -*- coding: utf-8 -*-
|
||||||
__version__ = "1.2.4"
|
__version__ = "1.2.5"
|
||||||
__version_info__ = tuple(
|
__version_info__ = tuple(
|
||||||
[
|
[
|
||||||
int(num) if num.isdigit() else num
|
int(num) if num.isdigit() else num
|
||||||
|
|
|
@ -1 +0,0 @@
|
||||||
Parameterize the default S3 ACL when uploading objects. (#1319)
|
|
|
@ -1 +0,0 @@
|
||||||
Fix stopped player to not show 00:00 when loading a track (#1432)
|
|
|
@ -1 +0,0 @@
|
||||||
Fixes channel page (#1729) (1729)
|
|
Loading…
Reference in New Issue