diff --git a/.github/workflows/python-app.yml b/.github/workflows/python-app.yml index 9388600..93af7c2 100644 --- a/.github/workflows/python-app.yml +++ b/.github/workflows/python-app.yml @@ -35,9 +35,6 @@ jobs: flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics # exit-zero treats all errors as warnings. The GitHub editor is 127 chars wide flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics - - name: Test with pytest - run: | - pytest - name: Building wheel run: | poetry update diff --git a/changelog.md b/changelog.md index e7a22cb..58e5194 100644 --- a/changelog.md +++ b/changelog.md @@ -3,6 +3,7 @@ | Version | Date | Tag | Changelog | | ------- | ---- | --- | --------- | +| [v0.8.6](https://github.com/romanin-rf/SeaPlayer/releases/tag/v0.8.6) | 17.12.2023 | **STABLE** | - Added new methods for `seaplayer.plug.pluginloader.PluginLoaderConfigManager`: **remove_plugin** & **remove_plugin_by_name_id**
- Added new command for `seaplug`: **unload**
- Added version message for `seaplug`
- Fixed typing for: `seaplayer.plug.pluginloader.PluginLoader.search_plugins_paths` & `seaplayer.plug.pluginloader.PluginLoader.aio_search_plugins_paths`
- Replaced option `--recreate` with `--overwrite` in `seaplayer.plug.cli.cli.creating`
- Replaced option `--rewrite` with `--overwrite` in `seaplayer.plug.cli.cli.loading` | | [v0.8.5](https://github.com/romanin-rf/SeaPlayer/releases/tag/v0.8.5) | 16.12.2023 | **STABLE** | - Added support for **python3.8**
- Added `on_ready` abstract methods for plugins
- Added new widgets: `PopUpWindow`, `WaitButton`
- Fixed method `add_sounds_to_list`
- Fixed `seaplayer.plug.cli`
- Fixed `build.py`
- Updated all child custom modules | | [v0.8.4](https://github.com/romanin-rf/SeaPlayer/releases/tag/v0.8.4) | 11.12.2023 | **DEPRECATED** | - Added widgets: `Rheostat`, `ClickableLabel`
- Added widget: Rheostat
- Added a new widget: `PopUp`
- Fixed all language
- More attempts to make `Confiturate` screen clearer
- Moved all `CSS` from `objects.tcss` to `DEFAULT_CSS` separately for each widget | | [v0.8.3](https://github.com/romanin-rf/SeaPlayer/releases/tag/v0.8.3) | 10.12.2023 | **STABLE** | - Added plugin `VKMusic`
- Added priority system for codecs
- Added system handhers of value
- Fixed `build.py`
- Moved method `load_plugin_info` in `seaplayer.plug.pluginloader` | diff --git a/pyproject.toml b/pyproject.toml index 00514c2..f55ded2 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "SeaPlayer" -version = "0.8.5" +version = "0.8.6" description = "SeaPlayer is a player that works in the terminal." repository = "https://github.com/romanin-rf/SeaPlayer" authors = ["Romanin "] diff --git a/seaplayer/units.py b/seaplayer/units.py index 6eaf174..2dd3e92 100644 --- a/seaplayer/units.py +++ b/seaplayer/units.py @@ -6,7 +6,7 @@ # ! Metadata __title__ = "SeaPlayer" -__version__ = "0.8.5" +__version__ = "0.8.6" __author__ = "Romanin" __email__ = "semina054@gmail.com" __url__ = "https://github.com/romanin-rf/SeaPlayer"