From a5d717a8d65daad45e5b046d875deb0f6ba912bb Mon Sep 17 00:00:00 2001 From: cqb13 Date: Sat, 24 Aug 2024 12:55:25 -0400 Subject: [PATCH] 0.2.0 --- .github/workflows/publish.yml | 14 +++++++------- Cargo.toml | 2 +- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index bf209e9..a1f1152 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -69,28 +69,28 @@ jobs: run: | choco install zip cd target/${{ matrix.target }}/release - zip ti-tools-0.1.9-${{ matrix.target }}.zip ti-tools.exe + zip ti-tools-0.2.0-${{ matrix.target }}.zip ti-tools.exe cd ../../.. - name: Create tar.gz file on macOS if: ${{ matrix.os == 'macos-latest' }} run: | chmod +x target/${{ matrix.target }}/release/ti-tools - tar -zcf target/${{ matrix.target }}/release/ti-tools-0.1.9-${{ matrix.target }}.tar.gz -C target/${{ matrix.target }}/release ti-tools + tar -zcf target/${{ matrix.target }}/release/ti-tools-0.2.0-${{ matrix.target }}.tar.gz -C target/${{ matrix.target }}/release ti-tools chmod +x target/${{ matrix.target2 }}/release/ti-tools - tar -zcf target/${{ matrix.target2 }}/release/ti-tools-0.1.9-${{ matrix.target2 }}.tar.gz -C target/${{ matrix.target2 }}/release ti-tools + tar -zcf target/${{ matrix.target2 }}/release/ti-tools-0.2.0-${{ matrix.target2 }}.tar.gz -C target/${{ matrix.target2 }}/release ti-tools - name: Create tar.gz file on Linux if: ${{ matrix.os == 'ubuntu-latest' }} run: | chmod +x target/${{ matrix.target }}/release/ti-tools - tar -zcf target/${{ matrix.target }}/release/ti-tools-0.1.9-${{ matrix.target }}.tar.gz -C target/${{ matrix.target }}/release ti-tools + tar -zcf target/${{ matrix.target }}/release/ti-tools-0.2.0-${{ matrix.target }}.tar.gz -C target/${{ matrix.target }}/release ti-tools - name: Upload release and assets to GitHub uses: svenstaro/upload-release-action@v2 with: repo_token: ${{ secrets.GITHUB_TOKEN }} - tag: "release-0.1.9-${{ github.run_number }}" - release_name: ti-tools 0.1.9 + tag: "release-0.2.0-${{ github.run_number }}" + release_name: ti-tools 0.2.0 file_glob: true - file: target/*/release/ti-tools-0.1.9-*.{zip,tar.gz} + file: target/*/release/ti-tools-0.2.0-*.{zip,tar.gz} diff --git a/Cargo.toml b/Cargo.toml index daaf197..93b4cf4 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ti-tools" -version = "0.1.9" +version = "0.2.0" edition = "2021" authors = ["cqb13 "] license = "MIT"