Skip to content

Commit

Permalink
chore: versioning
Browse files Browse the repository at this point in the history
fix Cargo.toml versioning to prevent github action fail
  • Loading branch information
AlkenD committed May 22, 2024
1 parent 0286e69 commit ff41ae5
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 9 deletions.
8 changes: 5 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
{
"name": "dester-desktop",
"version": "0.1.1",
"private": true,
"author": "DesterLib",
"license": "MIT",
Expand All @@ -13,7 +12,10 @@
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint"
"lint": "next lint",
"v:major": "pnpm dlx tauri-version major --no-git",
"v:minor": "pnpm dlx tauri-version patch --no-git",
"v:patch": "pnpm dlx tauri-version patch --no-git"
},
"dependencies": {
"@headlessui/react": "^2.0.3",
Expand Down Expand Up @@ -47,4 +49,4 @@
"typescript": "^5",
"url-loader": "^4.1.1"
}
}
}
8 changes: 4 additions & 4 deletions src-tauri/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
[package]
name = "app"
version = "0.1.0"
description = "A Tauri App"
authors = ["you"]
name = "Dester"
version = "0.0.1"
description = "Dester Desktop Client"
authors = ["DesterLib"]
license = ""
repository = ""
default-run = "app"
Expand Down
3 changes: 1 addition & 2 deletions src-tauri/tauri.conf.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,7 @@
"distDir": "../out"
},
"package": {
"productName": "Dester",
"version": "0.0.0-alpha"
"productName": "Dester"
},
"tauri": {
"allowlist": {
Expand Down

0 comments on commit ff41ae5

Please sign in to comment.