From 908689922eb147123dbe11fb0be1ec4001e50246 Mon Sep 17 00:00:00 2001 From: Sumner Evans Date: Sat, 17 Apr 2021 10:37:11 -0600 Subject: [PATCH] Update CHANGELOG --- CHANGELOG.rst | 23 +++++++++++++++++++---- CODEOWNERS | 1 + CONTRIBUTING.md | 6 +++--- 3 files changed, 23 insertions(+), 7 deletions(-) create mode 100644 CODEOWNERS diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 3528b2b..e96d612 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -1,14 +1,29 @@ v0.11.12 ======== -* Fixed some bugs with Chromecast active song highlighting (#274) +**Dependency bumps** (attention: package maintainers): + +* ``bleach``: ``^3.2.1 -> ^3.3.0`` +* ``keyring``: ``^21.4.0 -> ^23.0.0`` +* ``pychromecast``: ``^7.3.0 -> ^9.1.1`` + +**Bug Fixes** + +* Fixed some bugs with Chromecast active device highlighting. (#274) + +**Documentation** + +* A man page has been added and is installed via the Arch package. Thanks to + @baldurmen for the contribution. + +**Code Health and Infrastructure** + +* Converted to ``poetry-core``. Thanks to @SuperSandro2000 for the contribution. +* Converted to use ``bleach`` for all HTML sanitization tasks. (#276) v0.11.11 ======== -.. TODO in next release: -.. * A man page has been added. Contributed by @baldurmen. - **Bug Fixes** * Fixed some issues for Ampache compatibility. Thanks to @BenjaminSchaaf for the diff --git a/CODEOWNERS b/CODEOWNERS new file mode 100644 index 0000000..08383bc --- /dev/null +++ b/CODEOWNERS @@ -0,0 +1 @@ +* @sumner diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 1f3a76f..e31fbb7 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -38,8 +38,8 @@ submit a patch to the [~sumner/sublime-music-devel][srhtdevel] mailing list. If it is good, I will merge it in. To get an overview of the Sublime Music code structure, I recommend taking a -look at the [`sublime` package -documentation](https://sublime-music.gitlab.io/sublime-music/api/sublime.html). +look at the [`sublime_music` package +documentation](https://sublime-music.gitlab.io/sublime-music/api/sublime_music.html). ### Requirements @@ -143,7 +143,7 @@ The CI process runs all of the above checks on the code. You can run the same checks that the lint job runs yourself with the following commands: ``` $ flake8 -$ mypy sublime tests/**/*.py +$ mypy sublime_music tests/**/*.py $ black --check . $ ./cicd/custom_style_check.py ```