Version bump and changelog for 1.2.4

manage-py-reference 1.2.4
Georg Krause 2022-04-23 13:40:06 +02:00
rodzic 6d706c17a8
commit 6057b4fe95
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: 2970D504B2183D22
7 zmienionych plików z 51 dodań i 8 usunięć

Wyświetl plik

@ -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)
------------------

Wyświetl plik

@ -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

Wyświetl plik

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

Wyświetl plik

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

Wyświetl plik

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

Wyświetl plik

@ -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

Wyświetl plik

@ -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