From 064776eb31dff278ce170d6d6e5f31aec253a0a9 Mon Sep 17 00:00:00 2001 From: cqb13 Date: Sun, 21 Jul 2024 19:38:02 -0400 Subject: [PATCH] 0.1.7 --- .github/workflows/publish.yml | 14 +++++++------- Cargo.lock | 2 +- Cargo.toml | 2 +- 3 files changed, 9 insertions(+), 9 deletions(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 28d4f5a..d39c5f5 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.6-${{ matrix.target }}.zip ti-tools.exe + zip ti-tools-0.1.7-${{ 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.6-${{ matrix.target }}.tar.gz -C target/${{ matrix.target }}/release ti-tools + tar -zcf target/${{ matrix.target }}/release/ti-tools-0.1.7-${{ 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.6-${{ matrix.target2 }}.tar.gz -C target/${{ matrix.target2 }}/release ti-tools + tar -zcf target/${{ matrix.target2 }}/release/ti-tools-0.1.7-${{ 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.6-${{ matrix.target }}.tar.gz -C target/${{ matrix.target }}/release ti-tools + tar -zcf target/${{ matrix.target }}/release/ti-tools-0.1.7-${{ 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.6-${{ github.run_number }}" - release_name: ti-tools 0.1.6 + tag: "release-0.1.7-${{ github.run_number }}" + release_name: ti-tools 0.1.7 file_glob: true - file: target/*/release/ti-tools-0.1.6-*.{zip,tar.gz} + file: target/*/release/ti-tools-0.1.7-*.{zip,tar.gz} diff --git a/Cargo.lock b/Cargo.lock index 4a82d50..46ef26b 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -76,7 +76,7 @@ dependencies = [ [[package]] name = "ti-tools" -version = "0.1.6" +version = "0.1.7" dependencies = [ "serde", "serde_json", diff --git a/Cargo.toml b/Cargo.toml index 9c4ccc8..ed80486 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ti-tools" -version = "0.1.6" +version = "0.1.7" edition = "2021" authors = ["cqb13 "] license = "MIT"