Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release 0.0.31 #129

Merged
merged 43 commits into from
Apr 18, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
43 commits
Select commit Hold shift + click to select a range
0b207c7
Prepare Next Version
NeonDaniel Mar 9, 2023
c582217
add show input box method for skills (#109)
AIIX Mar 23, 2023
779e60f
Increment Version
JarbasAl Mar 23, 2023
34f269f
refactor/ovos-bus-client (#110)
JarbasAl Apr 5, 2023
71430c2
Increment Version
JarbasAl Apr 5, 2023
df84def
feat/FakeMessage (#111)
JarbasAl Apr 5, 2023
3d25675
Increment Version
JarbasAl Apr 5, 2023
921880e
Update rapidfuzz dependency (#112)
NeonDaniel Apr 6, 2023
a55787f
Increment Version
JarbasAl Apr 6, 2023
e1fab85
fix/missing_dependency (#114)
JarbasAl Apr 7, 2023
57d72f4
Increment Version
JarbasAl Apr 7, 2023
934f534
fix/missing_dependency (#115)
JarbasAl Apr 7, 2023
dbe73fa
Increment Version
JarbasAl Apr 7, 2023
f2576ee
feat/PKGBUILD (#116)
JarbasAl Apr 10, 2023
2d056f1
Update publish_AUR.yml
JarbasAl Apr 10, 2023
8b50157
Feat/optional ovos config (#106)
JarbasAl Apr 10, 2023
13cc44b
Increment Version
JarbasAl Apr 10, 2023
5e38575
Update input device checks (#81)
NeonDaniel Apr 11, 2023
728282a
Increment Version
JarbasAl Apr 11, 2023
708ce8c
add back wrapper around removed methods (#118)
JarbasAl Apr 11, 2023
2fbd310
Increment Version
JarbasAl Apr 11, 2023
bf0df61
fix/bus compat (#121)
JarbasAl Apr 11, 2023
164a15d
Increment Version
JarbasAl Apr 11, 2023
6ce2c27
Deprecate internal `ovos_config.config` references (#122)
NeonDaniel Apr 11, 2023
79f9d10
Increment Version
JarbasAl Apr 11, 2023
643bdd3
feat/native_OCP (#120)
JarbasAl Apr 12, 2023
2bf4fdc
Increment Version
JarbasAl Apr 12, 2023
309abad
[log] Only creates directory if not stdout (#125)
goldyfruit Apr 13, 2023
1146062
Increment Version
JarbasAl Apr 13, 2023
cf8467f
Update docstrings, annotate deprecation, and outline unit tests (#119)
NeonDaniel Apr 13, 2023
b1b6145
Increment Version
JarbasAl Apr 13, 2023
fcf38a5
Stable extra dependencies (#127)
NeonDaniel Apr 14, 2023
51186b3
Increment Version
JarbasAl Apr 14, 2023
237c17c
Update `wait_for_exit_signal` to use Event.wait instead of looped sle…
NeonDaniel Apr 14, 2023
6c619a2
Increment Version
JarbasAl Apr 14, 2023
10ed48b
Update release automation (#126)
NeonDaniel Apr 17, 2023
d339954
Increment Version to 0.0.31a17
NeonDaniel Apr 17, 2023
a0ce781
Update Changelog
NeonDaniel Apr 17, 2023
a481a23
Address Feedback for 0.0.32 Release (#130)
NeonDaniel Apr 18, 2023
1c748c8
Increment Version to 0.0.31a18
NeonDaniel Apr 18, 2023
e5a0f97
Update Changelog
NeonDaniel Apr 18, 2023
9508ff0
Increment Version to 0.0.31
NeonDaniel Apr 18, 2023
0804b6f
Update Changelog
NeonDaniel Apr 18, 2023
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 0 additions & 19 deletions .github/workflows/dev2master.yml

This file was deleted.

32 changes: 32 additions & 0 deletions .github/workflows/propose_release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
name: Propose Stable Release
on:
workflow_dispatch:
inputs:
release_type:
type: choice
description: Release Type
options:
- build
- minor
- major
jobs:
update_version:
uses: neongeckocom/.github/.github/workflows/propose_semver_release.yml@master
with:
release_type: ${{ inputs.release_type }}
version_file: ovos_utils/version.py
alpha_var: VERSION_ALPHA
build_var: VERSION_BUILD
minor_var: VERSION_MINOR
major_var: VERSION_MAJOR
update_changelog: True
branch: dev

pull_changes:
needs: update_version
uses: neongeckocom/.github/.github/workflows/pull_master.yml@master
with:
pr_assignee: ${{ github.actor }}
pr_draft: false
pr_title: ${{ needs.update_version.outputs.version }}
pr_body: ${{ needs.update_version.outputs.changelog }}
57 changes: 24 additions & 33 deletions .github/workflows/publish_alpha.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,55 +19,46 @@ on:
workflow_dispatch:

jobs:
update_version:
uses: neongeckocom/.github/.github/workflows/propose_semver_release.yml@master
with:
release_type: "alpha"
version_file: ovos_utils/version.py
alpha_var: VERSION_ALPHA
build_var: VERSION_BUILD
minor_var: VERSION_MINOR
major_var: VERSION_MAJOR
update_changelog: True
branch: dev
build_and_publish:
runs-on: ubuntu-latest
needs: update_version
steps:
- uses: actions/checkout@v2
with:
ref: dev
fetch-depth: 0 # otherwise, there would be errors pushing refs to the destination repository.
- 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: Increment Version
run: |
VER=$(python setup.py --version)
python scripts/bump_alpha.py
- name: "Generate release changelog"
uses: heinrichreimer/[email protected]
with:
token: ${{ secrets.GITHUB_TOKEN }}
id: changelog
- name: Commit to dev
uses: stefanzweifel/git-auto-commit-action@v4
with:
commit_message: Increment Version
branch: dev
- name: version
run: echo "::set-output name=version::$(python setup.py --version)"
id: version
- name: Create Release
id: create_release
uses: actions/create-release@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # This token is provided by Actions, you do not need to create your own token
with:
tag_name: V${{ steps.version.outputs.version }}
release_name: Release ${{ steps.version.outputs.version }}
tag_name: V${{ needs.update_version.outputs.version }}
release_name: Release ${{ needs.update_version.outputs.version }}
body: |
Changes in this Release
${{ steps.changelog.outputs.changelog }}
${{ needs.update_version.outputs.changelog }}
draft: false
prerelease: true
commitish: dev
- name: Checkout Repository
uses: actions/checkout@v2
with:
ref: dev
fetch-depth: 0 # otherwise, there would be errors pushing refs to the destination repository.
- name: Build Distribution Packages
run: |
python setup.py sdist bdist_wheel
- name: Publish to Test PyPI
uses: pypa/gh-action-pypi-publish@master
- name: Publish to PyPI
if: False
# TODO: Remove test patch above
uses: pypa/gh-action-pypi-publish@release/v1
with:
password: ${{secrets.PYPI_TOKEN}}
77 changes: 0 additions & 77 deletions .github/workflows/publish_build.yml

This file was deleted.

77 changes: 0 additions & 77 deletions .github/workflows/publish_major.yml

This file was deleted.

77 changes: 0 additions & 77 deletions .github/workflows/publish_minor.yml

This file was deleted.

Loading