Skip to content

Commit 2bbb600

Browse files
committed
change version to 0.0.6-dev.0
1 parent 8c02d79 commit 2bbb600

File tree

3 files changed

+7
-8
lines changed

3 files changed

+7
-8
lines changed

.github/workflows/test_publish.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ on:
1515
- "LICENSE"
1616

1717
jobs:
18-
test-linux:
18+
linux:
1919
runs-on: ubuntu-latest
2020
steps:
2121
- uses: actions/checkout@v4
@@ -37,7 +37,7 @@ jobs:
3737
run: |
3838
cd "${{github.workspace}}"
3939
dart test
40-
test-windows:
40+
windows:
4141
runs-on: windows-latest
4242
steps:
4343
- uses: actions/checkout@v4
@@ -56,7 +56,7 @@ jobs:
5656
run: |
5757
cd "${{github.workspace}}"
5858
dart test
59-
test-macos:
59+
macos:
6060
runs-on: macos-latest
6161
steps:
6262
- uses: actions/checkout@v4
@@ -78,7 +78,7 @@ jobs:
7878
publish:
7979
name: Publish
8080
if: startsWith(github.ref, 'refs/tags/v')
81-
needs: [test-linux, test-windows, test-macos]
81+
needs: [linux, windows, macos]
8282
permissions:
8383
id-token: write # Required for authentication using OIDC
8484
runs-on: ubuntu-latest
@@ -96,7 +96,7 @@ jobs:
9696
release:
9797
name: Release
9898
if: startsWith(github.ref, 'refs/tags/v')
99-
needs: [test-linux, test-windows, test-macos]
99+
needs: [linux, windows, macos]
100100
permissions:
101101
contents: write # https://github.com/softprops/action-gh-release/issues/236
102102
runs-on: ubuntu-latest

CHANGELOG.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,7 @@
11
# native_toolchain_cmake
22

3-
## 0.0.6
3+
## 0.0.6-dev.0
44

5-
- add `useVcvars` to `CMakeBuilder`
65
- migrate to `hooks` and `code_assets`
76

87
## 0.0.5

pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name: native_toolchain_cmake
22
description: >-
33
A library to invoke and build CMake projects for Dart Native Assets.
4-
version: 0.0.6
4+
version: 0.0.6-dev.0
55
repository: https://github.com/rainyl/native_toolchain_cmake
66

77
topics:

0 commit comments

Comments
 (0)