diff --git a/.github/workflows/workflow.yml b/.github/workflows/workflow.yml index 8b1c837..7119fef 100644 --- a/.github/workflows/workflow.yml +++ b/.github/workflows/workflow.yml @@ -53,20 +53,6 @@ jobs: bin/UZG-01.bin bin/UZG-01_v${{ steps.get_version.outputs.version }}.full.bin - update_manifest: - needs: build_firmware - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@master - with: - persist-credentials: false # otherwise, the token used is the GITHUB_TOKEN, instead of your personal token - fetch-depth: 0 # otherwise, you will failed to push refs to dest repo - - name: Get Release Version - id: get_version - shell: bash - run: | - value=`cat tools/version` - echo "version=$value" >> $GITHUB_OUTPUT - name: Updare version in manifest.json run: | sed -r 's/v[0-9]{1,4}\.[0-9]{1,4}\.[0-9]{1,4}/v${{ steps.get_version.outputs.version }}/g' manifest.json > new.manifest.json @@ -83,4 +69,4 @@ jobs: uses: actions-js/push@master with: github_token: ${{ secrets.GITHUB_TOKEN }} - message: 'update manifest.json' \ No newline at end of file + message: 'Release v${{ steps.get_version.outputs.version }} (${{ steps.date.outputs.date }})' \ No newline at end of file diff --git a/README.md b/README.md index 61db7cd..0cd66a7 100644 --- a/README.md +++ b/README.md @@ -57,7 +57,7 @@ You can contribute to UZG-01 Firmware by People helping to keep the show on the road - **developers and contributors**: - [@smlight-dev](https://github.com/smlight-dev/) - for improvement and refactoring of [ZigStarGW-FW](https://github.com/xyzroe/ZigStarGW-FW) - [@Tarik2142](https://github.com/Tarik2142) for refactoring, code optimizations done under [smlight-dev](https://github.com/mercenaruss/uzg-firmware) -- [@xynroe](https://github.com/xyzroe/) for initial firmware released for ZigStar devices +- [@xyzroe](https://github.com/xyzroe/) for initial firmware released for ZigStar devices Special thanks goes also to all authors of 3rd party libraries which are used in this project: diff --git a/bin/UZG-01.bin b/bin/UZG-01.bin index 75de49f..0636f91 100644 Binary files a/bin/UZG-01.bin and b/bin/UZG-01.bin differ diff --git a/bin/UZG-01_v0.1.4.full.bin b/bin/UZG-01_v0.1.5.full.bin similarity index 99% rename from bin/UZG-01_v0.1.4.full.bin rename to bin/UZG-01_v0.1.5.full.bin index aba2c9f..97b9c36 100644 Binary files a/bin/UZG-01_v0.1.4.full.bin and b/bin/UZG-01_v0.1.5.full.bin differ diff --git a/manifest.json b/manifest.json index ba129ed..661b125 100644 --- a/manifest.json +++ b/manifest.json @@ -1,11 +1,12 @@ { "name": "UZG-FW", + "version": "v0.1.5", "builds": [ { "chipFamily": "ESP32", "improv": false, "parts": [ - { "path": "bin/UZG-01_v0.1.4.full.bin", "offset": 0 } + { "path": "bin/UZG-01_v0.1.5.full.bin", "offset": 0 } ] } ] diff --git a/src/version.h b/src/version.h index 5e514c3..717c448 100644 --- a/src/version.h +++ b/src/version.h @@ -1,9 +1,9 @@ // AUTO GENERATED FILE, DO NOT EDIT #ifndef VERSION - #define VERSION "0.1.4" + #define VERSION "0.1.5" #endif #ifndef BUILD_TIMESTAMP - #define BUILD_TIMESTAMP "2023-08-22 01:30:16.538290" + #define BUILD_TIMESTAMP "2023-09-06 12:01:02.723464" #endif \ No newline at end of file diff --git a/tools/version b/tools/version index 446ba66..def9a01 100644 --- a/tools/version +++ b/tools/version @@ -1 +1 @@ -0.1.4 \ No newline at end of file +0.1.5 \ No newline at end of file