diff --git a/.github/workflows/build_tests.yml b/.github/workflows/build_tests.yml index c982751..baa08f6 100644 --- a/.github/workflows/build_tests.yml +++ b/.github/workflows/build_tests.yml @@ -11,7 +11,7 @@ jobs: with: ref: ${{ github.head_ref }} - name: Setup Python - uses: actions/setup-python@v1 + uses: actions/setup-python@v6 with: python-version: 3.8 - name: Install Build Tools diff --git a/.github/workflows/publish_stable.yml b/.github/workflows/publish_stable.yml index c403e44..d50bd5e 100644 --- a/.github/workflows/publish_stable.yml +++ b/.github/workflows/publish_stable.yml @@ -24,7 +24,7 @@ jobs: ref: dev fetch-depth: 0 # otherwise, there would be errors pushing refs to the destination repository. - name: Setup Python - uses: actions/setup-python@v1 + uses: actions/setup-python@v6 with: python-version: "3.11" - name: Install Build Tools diff --git a/.github/workflows/release_workflow.yml b/.github/workflows/release_workflow.yml index f88dd64..dd8e339 100644 --- a/.github/workflows/release_workflow.yml +++ b/.github/workflows/release_workflow.yml @@ -30,7 +30,7 @@ jobs: with: homeserver: 'matrix.org' token: ${{ secrets.MATRIX_TOKEN }} - channel: '!WjxEKjjINpyBRPFgxl:krbel.duckdns.org' + channel: '!jImYhOcJWVpvCRsDjc:matrix.org' message: | new ${{ github.event.repository.name }} PR merged! https://github.com/${{ github.repository }}/pull/${{ github.event.number }} @@ -44,7 +44,7 @@ jobs: ref: dev fetch-depth: 0 # otherwise, there would be errors pushing refs to the destination repository. - name: Setup Python - uses: actions/setup-python@v1 + uses: actions/setup-python@v6 with: python-version: "3.11" - name: Install Build Tools @@ -73,7 +73,7 @@ jobs: ref: dev - name: Setup Python - uses: actions/setup-python@v2 + uses: actions/setup-python@v6 with: python-version: '3.10' diff --git a/CHANGELOG.md b/CHANGELOG.md index 7762daa..520cc49 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,12 +1,20 @@ # Changelog -## [0.0.1a2](https://github.com/JarbasHiveMind/hivemind-http-protocol/tree/0.0.1a2) (2025-01-07) +## [0.0.2a2](https://github.com/JarbasHiveMind/hivemind-http-protocol/tree/0.0.2a2) (2025-12-19) -[Full Changelog](https://github.com/JarbasHiveMind/hivemind-http-protocol/compare/ce902ba01ef3c753f9ec837445a2ac4141d18abf...0.0.1a2) +[Full Changelog](https://github.com/JarbasHiveMind/hivemind-http-protocol/compare/0.0.2a1...0.0.2a2) **Merged pull requests:** -- improve thread safety [\#1](https://github.com/JarbasHiveMind/hivemind-http-protocol/pull/1) ([JarbasAl](https://github.com/JarbasAl)) +- Update actions/setup-python action to v6 [\#7](https://github.com/JarbasHiveMind/hivemind-http-protocol/pull/7) ([renovate[bot]](https://github.com/apps/renovate)) + +## [0.0.2a1](https://github.com/JarbasHiveMind/hivemind-http-protocol/tree/0.0.2a1) (2025-12-18) + +[Full Changelog](https://github.com/JarbasHiveMind/hivemind-http-protocol/compare/0.0.1...0.0.2a1) + +**Merged pull requests:** + +- Configure Renovate [\#2](https://github.com/JarbasHiveMind/hivemind-http-protocol/pull/2) ([renovate[bot]](https://github.com/apps/renovate)) diff --git a/hivemind_http_protocol/version.py b/hivemind_http_protocol/version.py index 76c4342..6e7e2ae 100644 --- a/hivemind_http_protocol/version.py +++ b/hivemind_http_protocol/version.py @@ -1,6 +1,6 @@ # START_VERSION_BLOCK VERSION_MAJOR = 0 VERSION_MINOR = 0 -VERSION_BUILD = 1 -VERSION_ALPHA = 0 +VERSION_BUILD = 2 +VERSION_ALPHA = 2 # END_VERSION_BLOCK diff --git a/renovate.json b/renovate.json new file mode 100644 index 0000000..5db72dd --- /dev/null +++ b/renovate.json @@ -0,0 +1,6 @@ +{ + "$schema": "https://docs.renovatebot.com/renovate-schema.json", + "extends": [ + "config:recommended" + ] +}