-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #9 from OpenVoiceOS/release-0.1.0a1
Release 0.1.0a1
- Loading branch information
Showing
3 changed files
with
20 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
# Changelog | ||
|
||
## [0.1.0a1](https://github.com/OpenVoiceOS/ovos-stt-plugin-chromium/tree/0.1.0a1) (2024-09-10) | ||
|
||
[Full Changelog](https://github.com/OpenVoiceOS/ovos-stt-plugin-chromium/compare/0.1.1...0.1.0a1) | ||
|
||
**Merged pull requests:** | ||
|
||
- feat:release [\#8](https://github.com/OpenVoiceOS/ovos-stt-plugin-chromium/pull/8) ([JarbasAl](https://github.com/JarbasAl)) | ||
|
||
|
||
|
||
\* *This Changelog was automatically generated by [github_changelog_generator](https://github.com/github-changelog-generator/github-changelog-generator)* |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,6 @@ | ||
# The following lines are replaced during the release process. | ||
# START_VERSION_BLOCK | ||
VERSION_MAJOR = 0 | ||
VERSION_MINOR = 0 | ||
VERSION_BUILD = 1 | ||
VERSION_ALPHA = 0 | ||
# END_VERSION_BLOCK | ||
VERSION_MINOR = 1 | ||
VERSION_BUILD = 0 | ||
VERSION_ALPHA = 1 | ||
# END_VERSION_BLOCK |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -12,7 +12,6 @@ | |
def get_version(): | ||
""" Find the version of the package""" | ||
version_file = f'{BASEDIR}/ovos_stt_plugin_chromium/version.py' | ||
print(f"ERROR: version file: {version_file}") | ||
major, minor, build, alpha = (None, None, None, None) | ||
with open(version_file) as f: | ||
for line in f: | ||
|
@@ -37,15 +36,15 @@ def get_version(): | |
setup( | ||
name='ovos-stt-plugin-chromium', | ||
version=get_version(), | ||
description='A stt plugin for mycroft using the google chrome browser api', | ||
description='A stt plugin for OVOS using the google chrome browser api', | ||
url='https://github.com/OpenVoiceOS/ovos-stt-plugin-chromium', | ||
author='JarbasAi', | ||
author_email='[email protected]', | ||
license='Apache-2.0', | ||
packages=['ovos_stt_plugin_chromium'], | ||
install_requires=["requests", | ||
"ovos_utils>=0.0.12a1", | ||
"ovos-plugin-manager>=0.0.1a7"], | ||
"ovos_utils>=0.0.12", | ||
"ovos-plugin-manager>=0.0.1"], | ||
zip_safe=True, | ||
classifiers=[ | ||
'Development Status :: 3 - Alpha', | ||
|