Skip to content

Commit a5d717a

Browse files
committed
0.2.0
1 parent 577dbae commit a5d717a

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

.github/workflows/publish.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -69,28 +69,28 @@ jobs:
6969
run: |
7070
choco install zip
7171
cd target/${{ matrix.target }}/release
72-
zip ti-tools-0.1.9-${{ matrix.target }}.zip ti-tools.exe
72+
zip ti-tools-0.2.0-${{ matrix.target }}.zip ti-tools.exe
7373
cd ../../..
7474
7575
- name: Create tar.gz file on macOS
7676
if: ${{ matrix.os == 'macos-latest' }}
7777
run: |
7878
chmod +x target/${{ matrix.target }}/release/ti-tools
79-
tar -zcf target/${{ matrix.target }}/release/ti-tools-0.1.9-${{ matrix.target }}.tar.gz -C target/${{ matrix.target }}/release ti-tools
79+
tar -zcf target/${{ matrix.target }}/release/ti-tools-0.2.0-${{ matrix.target }}.tar.gz -C target/${{ matrix.target }}/release ti-tools
8080
chmod +x target/${{ matrix.target2 }}/release/ti-tools
81-
tar -zcf target/${{ matrix.target2 }}/release/ti-tools-0.1.9-${{ matrix.target2 }}.tar.gz -C target/${{ matrix.target2 }}/release ti-tools
81+
tar -zcf target/${{ matrix.target2 }}/release/ti-tools-0.2.0-${{ matrix.target2 }}.tar.gz -C target/${{ matrix.target2 }}/release ti-tools
8282
8383
- name: Create tar.gz file on Linux
8484
if: ${{ matrix.os == 'ubuntu-latest' }}
8585
run: |
8686
chmod +x target/${{ matrix.target }}/release/ti-tools
87-
tar -zcf target/${{ matrix.target }}/release/ti-tools-0.1.9-${{ matrix.target }}.tar.gz -C target/${{ matrix.target }}/release ti-tools
87+
tar -zcf target/${{ matrix.target }}/release/ti-tools-0.2.0-${{ matrix.target }}.tar.gz -C target/${{ matrix.target }}/release ti-tools
8888
8989
- name: Upload release and assets to GitHub
9090
uses: svenstaro/upload-release-action@v2
9191
with:
9292
repo_token: ${{ secrets.GITHUB_TOKEN }}
93-
tag: "release-0.1.9-${{ github.run_number }}"
94-
release_name: ti-tools 0.1.9
93+
tag: "release-0.2.0-${{ github.run_number }}"
94+
release_name: ti-tools 0.2.0
9595
file_glob: true
96-
file: target/*/release/ti-tools-0.1.9-*.{zip,tar.gz}
96+
file: target/*/release/ti-tools-0.2.0-*.{zip,tar.gz}

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "ti-tools"
3-
version = "0.1.9"
3+
version = "0.2.0"
44
edition = "2021"
55
authors = ["cqb13 <[email protected]>"]
66
license = "MIT"

0 commit comments

Comments
 (0)