-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
# Changelog ## [0.1.2a2](https://github.com/NeonGeckoCom/neon-utterance-plugin-translator/tree/0.1.2a2) (2023-11-09) [Full Changelog](0.1.1...0.1.2a2) **Closed issues:** - Update translation logic to support a list of internal languages [\#9](#9) - Prepare for PyPI Release [\#2](#2) - Add Unit Tests [\#1](#1) **Merged pull requests:** - Update GitHub Automation [\#13](#13) ([NeonDaniel](https://github.com/NeonDaniel)) - Add support for configuration disabling language detection [\#12](#12) ([NeonDaniel](https://github.com/NeonDaniel)) - Config handling bugfix and logging/formatting changes [\#10](#10) ([NeonDaniel](https://github.com/NeonDaniel)) \* *This Changelog was automatically generated by [github_changelog_generator](https://github.com/github-changelog-generator/github-changelog-generator)*
- Loading branch information
Showing
17 changed files
with
167 additions
and
238 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
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
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,28 @@ | ||
name: Propose Stable Release | ||
on: | ||
workflow_dispatch: | ||
inputs: | ||
release_type: | ||
type: choice | ||
description: Release Type | ||
options: | ||
- patch | ||
- minor | ||
- major | ||
jobs: | ||
update_version: | ||
uses: neongeckocom/.github/.github/workflows/propose_semver_release.yml@master | ||
with: | ||
branch: dev | ||
release_type: ${{ inputs.release_type }} | ||
update_changelog: True | ||
version_file: "version.py" | ||
pull_changes: | ||
uses: neongeckocom/.github/.github/workflows/pull_master.yml@master | ||
needs: update_version | ||
with: | ||
pr_reviewer: neonreviewers | ||
pr_assignee: ${{ github.actor }} | ||
pr_draft: false | ||
pr_title: ${{ needs.update_version.outputs.version }} | ||
pr_body: ${{ needs.update_version.outputs.changelog }} |
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,37 +1,12 @@ | ||
# This workflow will generate a release distribution and upload it to PyPI | ||
|
||
name: Publish Build and GitHub Release | ||
on: | ||
push: | ||
branches: | ||
- master | ||
|
||
jobs: | ||
tag_release: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: Get Version | ||
run: | | ||
VERSION=$(python setup.py --version) | ||
echo "VERSION=${VERSION}" >> $GITHUB_ENV | ||
- uses: ncipollo/release-action@v1 | ||
with: | ||
token: ${{secrets.GITHUB_TOKEN}} | ||
tag: ${{env.VERSION}} | ||
build_and_publish: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: Setup Python | ||
uses: actions/setup-python@v1 | ||
with: | ||
python-version: 3.8 | ||
- name: Install Build Tools | ||
run: | | ||
python -m pip install build wheel | ||
- name: Build Distribution Packages | ||
run: | | ||
python setup.py bdist_wheel | ||
- name: Publish to PyPI | ||
uses: pypa/gh-action-pypi-publish@master | ||
with: | ||
password: ${{secrets.PYPI_TOKEN}} | ||
build_and_publish_pypi_and_release: | ||
uses: neongeckocom/.github/.github/workflows/publish_stable_release.yml@master | ||
secrets: inherit |
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
This file was deleted.
Oops, something went wrong.
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
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,21 @@ | ||
# Changelog | ||
|
||
## [0.1.2a2](https://github.com/NeonGeckoCom/neon-utterance-plugin-translator/tree/0.1.2a2) (2023-11-09) | ||
|
||
[Full Changelog](https://github.com/NeonGeckoCom/neon-utterance-plugin-translator/compare/0.1.1...0.1.2a2) | ||
|
||
**Closed issues:** | ||
|
||
- Update translation logic to support a list of internal languages [\#9](https://github.com/NeonGeckoCom/neon-utterance-plugin-translator/issues/9) | ||
- Prepare for PyPI Release [\#2](https://github.com/NeonGeckoCom/neon-utterance-plugin-translator/issues/2) | ||
- Add Unit Tests [\#1](https://github.com/NeonGeckoCom/neon-utterance-plugin-translator/issues/1) | ||
|
||
**Merged pull requests:** | ||
|
||
- Update GitHub Automation [\#13](https://github.com/NeonGeckoCom/neon-utterance-plugin-translator/pull/13) ([NeonDaniel](https://github.com/NeonDaniel)) | ||
- Add support for configuration disabling language detection [\#12](https://github.com/NeonGeckoCom/neon-utterance-plugin-translator/pull/12) ([NeonDaniel](https://github.com/NeonDaniel)) | ||
- Config handling bugfix and logging/formatting changes [\#10](https://github.com/NeonGeckoCom/neon-utterance-plugin-translator/pull/10) ([NeonDaniel](https://github.com/NeonDaniel)) | ||
|
||
|
||
|
||
\* *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
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,4 +1,4 @@ | ||
neon_transformers~=0.1 | ||
ovos_plugin_manager~=0.0,>=0.0.17 | ||
ovos_utils~=0.0,>=0.0.22 | ||
neon_utils>=0.17.3,<2.0.0 | ||
ovos_plugin_manager~=0.0.17 | ||
ovos_utils~=0.0.22 | ||
neon_utils~=1.0 |
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,2 +1,3 @@ | ||
pytest | ||
neon-lang-plugin-libretranslate | ||
neon-lang-plugin-libretranslate | ||
ovos-bus-client |
Oops, something went wrong.