Skip to content

Commit

Permalink
1.61
Browse files Browse the repository at this point in the history
  • Loading branch information
amrbashir committed Dec 28, 2023
1 parent c70f15a commit aa3c7c3
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 11 deletions.
2 changes: 1 addition & 1 deletion .changes/msrv-1.60.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@
"create-tauri-app": "patch"
---

Bump MSRV to `1.60`
Bump MSRV to `1.61`
8 changes: 4 additions & 4 deletions .github/workflows/cli-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,14 +32,14 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
toolchain: [1.60, stable]
toolchain: [1.61, stable]

steps:
- uses: actions/checkout@v3
- uses: dtolnay/rust-toolchain@master
with:
toolchain: ${{ matrix.toolchain }}
- run: cargo test
if: matrix.toolchain != 1.60
- run: cargo test -- --workspace --exclude create-tauri-app-node
if: matrix.toolchain == 1.60
if: matrix.toolchain != 1.61
- run: cargo test --workspace --exclude create-tauri-app-node
if: matrix.toolchain == 1.61
15 changes: 9 additions & 6 deletions packages/cli/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
[package]
name = "create-tauri-app"
description = "Rapidly scaffold out a new tauri app project."
authors = [ "Tauri Programme within The Commons Conservancy" ]
authors = ["Tauri Programme within The Commons Conservancy"]
version = "3.12.0"
edition = "2021"
license = "Apache-2.0 OR MIT"
readme = "README.md"
repository = "https://github.com/tauri-apps/create-tauri-app"
keywords = [ "tauri" ]
categories = [ "gui" ]
exclude = [ "/node" ]
rust-version = "1.60"
keywords = ["tauri"]
categories = ["gui"]
exclude = ["/node"]
rust-version = "1.61"

[[bin]]
name = "cargo-create-tauri-app"
Expand All @@ -21,4 +21,7 @@ anyhow = "1"
dialoguer = "0.10"
pico-args = "0.5"
ctrlc = "3.3"
rust-embed = { version = "8.1", features = [ "compression", "interpolate-folder-path" ] }
rust-embed = { version = "8.1", features = [
"compression",
"interpolate-folder-path",
] }

0 comments on commit aa3c7c3

Please sign in to comment.