Skip to content

Commit 0a71d4e

Browse files
authored
Merge pull request #14 from OpenVoiceOS/release-0.1.2a1
Release 0.1.2a1
2 parents fc79df6 + 6a2e047 commit 0a71d4e

File tree

6 files changed

+25
-37
lines changed

6 files changed

+25
-37
lines changed

.github/workflows/build_tests.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -24,12 +24,12 @@ jobs:
2424
strategy:
2525
max-parallel: 2
2626
matrix:
27-
python-version: [ 3.7, 3.8, 3.9, "3.10" ]
27+
python-version: [ "3.10", "3.11" ]
2828
runs-on: ubuntu-latest
2929
steps:
30-
- uses: actions/checkout@v2
30+
- uses: actions/checkout@v4
3131
- name: Setup Python
32-
uses: actions/setup-python@v1
32+
uses: actions/setup-python@v5
3333
with:
3434
python-version: ${{ matrix.python-version }}
3535
- name: Install Build Tools
@@ -56,4 +56,4 @@ jobs:
5656
ignore-vulns: |
5757
GHSA-r9hx-vwmv-q579
5858
GHSA-j8r2-6x86-q33q
59-
PYSEC-2022-43012
59+
PYSEC-2022-43012

.github/workflows/publish_stable.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -19,14 +19,14 @@ jobs:
1919
if: success() # Ensure this job only runs if the previous job succeeds
2020
runs-on: ubuntu-latest
2121
steps:
22-
- uses: actions/checkout@v2
22+
- uses: actions/checkout@v4
2323
with:
24-
ref: dev
24+
ref: master
2525
fetch-depth: 0 # otherwise, there would be errors pushing refs to the destination repository.
2626
- name: Setup Python
27-
uses: actions/setup-python@v1
27+
uses: actions/setup-python@v5
2828
with:
29-
python-version: 3.8
29+
python-version: "3.11"
3030
- name: Install Build Tools
3131
run: |
3232
python -m pip install build wheel
@@ -50,7 +50,7 @@ jobs:
5050
- name: Build Distribution Packages
5151
run: |
5252
python setup.py sdist bdist_wheel
53-
- name: Publish to Test PyPI
53+
- name: Publish to PyPI
5454
uses: pypa/gh-action-pypi-publish@master
5555
with:
5656
password: ${{secrets.PYPI_TOKEN}}
@@ -61,12 +61,12 @@ jobs:
6161
if: success() # Ensure this job only runs if the previous job succeeds
6262
runs-on: ubuntu-latest
6363
steps:
64-
- uses: actions/checkout@v2
64+
- uses: actions/checkout@v4
6565
with:
6666
fetch-depth: 0 # otherwise, there would be errors pushing refs to the destination repository.
6767
ref: master
6868
- name: Push master -> dev
6969
uses: ad-m/github-push-action@master
7070
with:
7171
github_token: ${{ secrets.GITHUB_TOKEN }}
72-
branch: dev
72+
branch: dev

.github/workflows/release_workflow.yml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
name: Release Alpha and Propose Stable
22

33
on:
4+
workflow_dispatch:
45
pull_request:
56
types: [closed]
67
branches: [dev]
78

89
jobs:
910
publish_alpha:
10-
if: github.event.pull_request.merged == true
1111
uses: TigreGotico/gh-automations/.github/workflows/publish-alpha.yml@master
1212
secrets: inherit
1313
with:
@@ -23,7 +23,7 @@ jobs:
2323
needs: publish_alpha
2424
runs-on: ubuntu-latest
2525
steps:
26-
- uses: actions/checkout@v2
26+
- uses: actions/checkout@v4
2727
- name: Send message to Matrix bots channel
2828
id: matrix-chat-message
2929
uses: fadenb/matrix-chat-message@v0.0.6
@@ -39,14 +39,14 @@ jobs:
3939
if: success() # Ensure this job only runs if the previous job succeeds
4040
runs-on: ubuntu-latest
4141
steps:
42-
- uses: actions/checkout@v2
42+
- uses: actions/checkout@v4
4343
with:
4444
ref: dev
4545
fetch-depth: 0 # otherwise, there would be errors pushing refs to the destination repository.
4646
- name: Setup Python
47-
uses: actions/setup-python@v1
47+
uses: actions/setup-python@v5
4848
with:
49-
python-version: 3.8
49+
python-version: "3.11"
5050
- name: Install Build Tools
5151
run: |
5252
python -m pip install build wheel
@@ -56,7 +56,7 @@ jobs:
5656
- name: Build Distribution Packages
5757
run: |
5858
python setup.py sdist bdist_wheel
59-
- name: Publish to Test PyPI
59+
- name: Publish to PyPI
6060
uses: pypa/gh-action-pypi-publish@master
6161
with:
6262
password: ${{secrets.PYPI_TOKEN}}
@@ -68,14 +68,14 @@ jobs:
6868
runs-on: ubuntu-latest
6969
steps:
7070
- name: Checkout dev branch
71-
uses: actions/checkout@v3
71+
uses: actions/checkout@v4
7272
with:
7373
ref: dev
7474

7575
- name: Setup Python
76-
uses: actions/setup-python@v2
76+
uses: actions/setup-python@v5
7777
with:
78-
python-version: '3.10'
78+
python-version: '3.11'
7979

8080
- name: Get version from setup.py
8181
id: get_version

.github/workflows/unit_tests.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -35,12 +35,12 @@ jobs:
3535
strategy:
3636
max-parallel: 2
3737
matrix:
38-
python-version: [ 3.7, 3.8, 3.9, "3.10" ]
38+
python-version: [ "3.10", "3.11" ]
3939
runs-on: ubuntu-latest
4040
steps:
41-
- uses: actions/checkout@v2
41+
- uses: actions/checkout@v4
4242
- name: Set up python ${{ matrix.python-version }}
43-
uses: actions/setup-python@v2
43+
uses: actions/setup-python@v5
4444
with:
4545
python-version: ${{ matrix.python-version }}
4646
- name: Install System Dependencies

CHANGELOG.md

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,5 @@
11
# Changelog
22

3-
## [0.1.1a1](https://github.com/OpenVoiceOS/ovos-microphone-plugin-alsa/tree/0.1.1a1) (2025-06-08)
4-
5-
[Full Changelog](https://github.com/OpenVoiceOS/ovos-microphone-plugin-alsa/compare/V0.1.0...0.1.1a1)
6-
7-
**Merged pull requests:**
8-
9-
- fix: compatibility with ovos-plugin-manager 1.X.X [\#12](https://github.com/OpenVoiceOS/ovos-microphone-plugin-alsa/pull/12) ([JarbasAl](https://github.com/JarbasAl))
10-
11-
## [V0.1.0](https://github.com/OpenVoiceOS/ovos-microphone-plugin-alsa/tree/V0.1.0) (2024-09-11)
12-
13-
[Full Changelog](https://github.com/OpenVoiceOS/ovos-microphone-plugin-alsa/compare/0.1.0...V0.1.0)
14-
153

164

175
\* *This Changelog was automatically generated by [github_changelog_generator](https://github.com/github-changelog-generator/github-changelog-generator)*
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# START_VERSION_BLOCK
22
VERSION_MAJOR = 0
33
VERSION_MINOR = 1
4-
VERSION_BUILD = 1
5-
VERSION_ALPHA = 0
4+
VERSION_BUILD = 2
5+
VERSION_ALPHA = 1
66
# END_VERSION_BLOCK

0 commit comments

Comments
 (0)