diff --git a/.github/workflows/publish_release.yml b/.github/workflows/publish_release.yml index 3272b82c..97ee396a 100644 --- a/.github/workflows/publish_release.yml +++ b/.github/workflows/publish_release.yml @@ -6,8 +6,6 @@ on: jobs: github_release: - if: false - # TODO: Remove test patch above runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 @@ -42,4 +40,4 @@ jobs: - name: Publish to PyPI uses: pypa/gh-action-pypi-publish@release/v1 with: - password: ${{secrets.PYPI_TOKEN}} \ No newline at end of file + password: ${{secrets.PYPI_TOKEN}} diff --git a/CHANGELOG.md b/CHANGELOG.md index 96a9845d..7ff7b7de 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## [0.0.32](https://github.com/OpenVoiceOS/ovos-utils/tree/0.0.32) (2023-04-18) + +[Full Changelog](https://github.com/OpenVoiceOS/ovos-utils/compare/V0.0.31a18...0.0.32) + +**Merged pull requests:** + +- Enable release action [\#131](https://github.com/OpenVoiceOS/ovos-utils/pull/131) ([NeonDaniel](https://github.com/NeonDaniel)) + ## [V0.0.31a18](https://github.com/OpenVoiceOS/ovos-utils/tree/V0.0.31a18) (2023-04-18) [Full Changelog](https://github.com/OpenVoiceOS/ovos-utils/compare/V0.0.31a17...V0.0.31a18) diff --git a/ovos_utils/version.py b/ovos_utils/version.py index eafc500e..de4f47f7 100644 --- a/ovos_utils/version.py +++ b/ovos_utils/version.py @@ -2,6 +2,6 @@ # START_VERSION_BLOCK VERSION_MAJOR = 0 VERSION_MINOR = 0 -VERSION_BUILD = 31 +VERSION_BUILD = 32 VERSION_ALPHA = 0 # END_VERSION_BLOCK