Version bump and changelog for 1.2.4

This commit is contained in:
Georg Krause 2022-04-23 13:40:06 +02:00
parent 6d706c17a8
commit 6057b4fe95
No known key found for this signature in database
GPG Key ID: 2970D504B2183D22
7 changed files with 51 additions and 8 deletions

View File

@ -10,6 +10,52 @@ This changelog is viewable on the web at https://docs.funkwhale.audio/changelog.
.. towncrier
1.2.4 (2022-04-23)
------------------
Upgrade instructions are available at
https://docs.funkwhale.audio/admin/upgrading.html
Enhancements:
- Hand cursor now displayed over artist and album cards
Bugfixes:
- Fixes docs' SMTP URI configuration (#1749) (1749)
Documentation:
- The documentation is now available in two versions: Develop and Stable
Contributors to our Issues:
- Beto Dealmeida
- Cam Sweeney
- Ciarán Ainsworth
- Georg Krause
- JuniorJPDJ
- Marcos Peña
- Mathieu Jourdan
- Micha Gläß-Stöcker
- petitminion
Contributors to our Merge Requests:
- Georg Krause
- JuniorJPDJ
- Marcos Peña
- petitminion
Committers:
- Georg Krause
- Marcos Peña
- MattDHarding
1.2.3 (2022-03-18)
------------------

View File

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

View File

@ -1 +0,0 @@
Fixes docs' SMTP URI configuration (#1749) (1749)

View File

@ -1 +0,0 @@
Hand cursor now displayed over artist and album cards

View File

@ -1 +0,0 @@
The documentation is now available in two versions: Develop and Stable

View File

@ -1,5 +1,5 @@
------------------
{{ versiondata.version }} ({{ versiondata.date }})
{{ top_underline * ((versiondata.version + versiondata.date)|length + 3)}}
Upgrade instructions are available at
https://docs.funkwhale.audio/admin/upgrading.html

View File

@ -96,7 +96,7 @@ def main():
issue_participants = clear_list(issue_participants)
for contributor in issue_participants:
print(contributor)
print("- " + contributor)
print("\nContributors to our Merge Requests:\n")
mr_participants = []
@ -107,7 +107,7 @@ def main():
mr_participants = clear_list(mr_participants)
for contributor in mr_participants:
print(contributor)
print("- " + contributor)
return