Version bump and changelog for 1.2.4
This commit is contained in:
parent
6d706c17a8
commit
6057b4fe95
46
CHANGELOG
46
CHANGELOG
|
@ -10,6 +10,52 @@ This changelog is viewable on the web at https://docs.funkwhale.audio/changelog.
|
||||||
|
|
||||||
.. towncrier
|
.. 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)
|
1.2.3 (2022-03-18)
|
||||||
------------------
|
------------------
|
||||||
|
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
# -*- coding: utf-8 -*-
|
# -*- coding: utf-8 -*-
|
||||||
__version__ = "1.2.3"
|
__version__ = "1.2.4"
|
||||||
__version_info__ = tuple(
|
__version_info__ = tuple(
|
||||||
[
|
[
|
||||||
int(num) if num.isdigit() else num
|
int(num) if num.isdigit() else num
|
||||||
|
|
|
@ -1 +0,0 @@
|
||||||
Fixes docs' SMTP URI configuration (#1749) (1749)
|
|
|
@ -1 +0,0 @@
|
||||||
Hand cursor now displayed over artist and album cards
|
|
|
@ -1 +0,0 @@
|
||||||
The documentation is now available in two versions: Develop and Stable
|
|
|
@ -1,5 +1,5 @@
|
||||||
|
{{ versiondata.version }} ({{ versiondata.date }})
|
||||||
------------------
|
{{ top_underline * ((versiondata.version + versiondata.date)|length + 3)}}
|
||||||
|
|
||||||
Upgrade instructions are available at
|
Upgrade instructions are available at
|
||||||
https://docs.funkwhale.audio/admin/upgrading.html
|
https://docs.funkwhale.audio/admin/upgrading.html
|
||||||
|
|
|
@ -96,7 +96,7 @@ def main():
|
||||||
|
|
||||||
issue_participants = clear_list(issue_participants)
|
issue_participants = clear_list(issue_participants)
|
||||||
for contributor in issue_participants:
|
for contributor in issue_participants:
|
||||||
print(contributor)
|
print("- " + contributor)
|
||||||
|
|
||||||
print("\nContributors to our Merge Requests:\n")
|
print("\nContributors to our Merge Requests:\n")
|
||||||
mr_participants = []
|
mr_participants = []
|
||||||
|
@ -107,7 +107,7 @@ def main():
|
||||||
|
|
||||||
mr_participants = clear_list(mr_participants)
|
mr_participants = clear_list(mr_participants)
|
||||||
for contributor in mr_participants:
|
for contributor in mr_participants:
|
||||||
print(contributor)
|
print("- " + contributor)
|
||||||
|
|
||||||
return
|
return
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue