Skip to content

Commit

Permalink
Merge branch 'dev' into update/utils
Browse files Browse the repository at this point in the history
  • Loading branch information
JarbasAl authored Dec 29, 2023
2 parents 24dd2a6 + fc2d267 commit 477c743
Show file tree
Hide file tree
Showing 5 changed files with 23 additions and 5 deletions.
12 changes: 10 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,16 @@
# Changelog

## [0.0.6a8](https://github.com/OpenVoiceOS/ovos-ocp-audio-plugin/tree/0.0.6a8) (2023-09-12)
## [0.0.6a9](https://github.com/OpenVoiceOS/ovos-ocp-audio-plugin/tree/0.0.6a9) (2023-10-27)

[Full Changelog](https://github.com/OpenVoiceOS/ovos-ocp-audio-plugin/compare/V0.0.6a7...0.0.6a8)
[Full Changelog](https://github.com/OpenVoiceOS/ovos-ocp-audio-plugin/compare/V0.0.6a8...0.0.6a9)

**Merged pull requests:**

- Update requirements to stable versions [\#100](https://github.com/OpenVoiceOS/ovos-ocp-audio-plugin/pull/100) ([NeonDaniel](https://github.com/NeonDaniel))

## [V0.0.6a8](https://github.com/OpenVoiceOS/ovos-ocp-audio-plugin/tree/V0.0.6a8) (2023-09-12)

[Full Changelog](https://github.com/OpenVoiceOS/ovos-ocp-audio-plugin/compare/V0.0.6a7...V0.0.6a8)

**Implemented enhancements:**

Expand Down
2 changes: 1 addition & 1 deletion ovos_plugin_common_play/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,5 @@
VERSION_MAJOR = 0
VERSION_MINOR = 0
VERSION_BUILD = 6
VERSION_ALPHA = 8
VERSION_ALPHA = 9
# END_VERSION_BLOCK
2 changes: 1 addition & 1 deletion requirements/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@ ovos_workshop >=0.0.15a2, < 0.1.0
ovos_audio_plugin_simple>=0.0.2a3, < 0.1.0
ovos-ocp-files-plugin~=0.13
padacioso~=0.2, >=0.1.1
dbus-next
dbus-next
3 changes: 2 additions & 1 deletion requirements/requirements_extra.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,5 @@ ovos-ocp-deezer-plugin~=0.0, >=0.0.1
ovos-ocp-rss-plugin~=0.0, >=0.0.2
ovos-ocp-bandcamp-plugin~=0.0, >=0.0.1
ovos-ocp-m3u-plugin>0.0, >=0.0.1
ovos-ocp-news-plugin~=0.0, >=0.0.3
ovos-ocp-news-plugin~=0.0, >=0.0.3
ovos_audio_plugin_simple>=0.0.2a3, < 0.1.0
9 changes: 9 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,13 @@ def required(requirements_file):
return [pkg for pkg in requirements
if pkg.strip() and not pkg.startswith("#")]


def get_description():
with open(os.path.join(BASEDIR, "README.md"), "r") as f:
long_description = f.read()
return long_description


PLUGIN_ENTRY_POINT = 'ovos_common_play=ovos_plugin_common_play'
PLUGIN_CONFIG_ENTRY_POINT = 'ovos_common_play.config=ovos_plugin_common_play:OCPPluginConfig'

Expand All @@ -57,6 +64,8 @@ def required(requirements_file):
name='ovos_plugin_common_play',
version=get_version(),
description='OVOS common play audio service adapter plugin',
long_description=get_description(),
long_description_content_type="text/markdown",
url='https://github.com/OpenVoiceOS/ovos-ocp-audio-plugin',
author='JarbasAi',
author_email='[email protected]',
Expand Down

0 comments on commit 477c743

Please sign in to comment.