Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .changes/cargo-lock-proc-macro2.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"create-tauri-app": "patch"
---

Fix `cargo install crate-tauri-app` with `--locked` flag.
6 changes: 6 additions & 0 deletions .changes/msrv.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
---
"create-tauri-app": "minor"
"create-tauri-app-js": "minor"
---

Update MSRV of this crate to 1.71
7 changes: 2 additions & 5 deletions .github/workflows/cli-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,14 +32,11 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
toolchain: [1.61, stable]
toolchain: [1.71, stable]

steps:
- uses: actions/checkout@v3
- uses: dtolnay/rust-toolchain@master
with:
toolchain: ${{ matrix.toolchain }}
- run: cargo test
if: matrix.toolchain != 1.61
- run: cargo test --workspace --exclude create-tauri-app-node
if: matrix.toolchain == 1.61
- run: cargo test
Loading