diff --git a/CHANGELOG b/CHANGELOG index 5b19d4dbf..9483b5a54 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -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) ------------------ diff --git a/api/funkwhale_api/__init__.py b/api/funkwhale_api/__init__.py index 4e7305fdd..1e618c71a 100644 --- a/api/funkwhale_api/__init__.py +++ b/api/funkwhale_api/__init__.py @@ -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 diff --git a/changes/changelog.d/1749.bugfix b/changes/changelog.d/1749.bugfix deleted file mode 100644 index 14c0f2dcb..000000000 --- a/changes/changelog.d/1749.bugfix +++ /dev/null @@ -1 +0,0 @@ -Fixes docs' SMTP URI configuration (#1749) (1749) diff --git a/changes/changelog.d/cursor.enhancement b/changes/changelog.d/cursor.enhancement deleted file mode 100644 index da943aeda..000000000 --- a/changes/changelog.d/cursor.enhancement +++ /dev/null @@ -1 +0,0 @@ -Hand cursor now displayed over artist and album cards diff --git a/changes/changelog.d/multi-version.doc b/changes/changelog.d/multi-version.doc deleted file mode 100644 index 84330d6ef..000000000 --- a/changes/changelog.d/multi-version.doc +++ /dev/null @@ -1 +0,0 @@ -The documentation is now available in two versions: Develop and Stable diff --git a/changes/template.rst b/changes/template.rst index 6dcd63461..6db6631dc 100644 --- a/changes/template.rst +++ b/changes/template.rst @@ -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 diff --git a/scripts/get-contributions-stats.py b/scripts/get-contributions-stats.py index 6ac65ca76..85f4db5e8 100644 --- a/scripts/get-contributions-stats.py +++ b/scripts/get-contributions-stats.py @@ -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