Update CHANGELOG

This commit is contained in:
Sumner Evans
2021-04-17 10:37:11 -06:00
parent 133b2b8fb9
commit 908689922e
3 changed files with 23 additions and 7 deletions

View File

@@ -1,14 +1,29 @@
v0.11.12 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 v0.11.11
======== ========
.. TODO in next release:
.. * A man page has been added. Contributed by @baldurmen.
**Bug Fixes** **Bug Fixes**
* Fixed some issues for Ampache compatibility. Thanks to @BenjaminSchaaf for the * Fixed some issues for Ampache compatibility. Thanks to @BenjaminSchaaf for the

1
CODEOWNERS Normal file
View File

@@ -0,0 +1 @@
* @sumner

View File

@@ -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. it is good, I will merge it in.
To get an overview of the Sublime Music code structure, I recommend taking a To get an overview of the Sublime Music code structure, I recommend taking a
look at the [`sublime` package look at the [`sublime_music` package
documentation](https://sublime-music.gitlab.io/sublime-music/api/sublime.html). documentation](https://sublime-music.gitlab.io/sublime-music/api/sublime_music.html).
### Requirements ### 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: checks that the lint job runs yourself with the following commands:
``` ```
$ flake8 $ flake8
$ mypy sublime tests/**/*.py $ mypy sublime_music tests/**/*.py
$ black --check . $ black --check .
$ ./cicd/custom_style_check.py $ ./cicd/custom_style_check.py
``` ```