From 36644321833d0d672a3b7628e9efaa53cb961f63 Mon Sep 17 00:00:00 2001 From: MATSUNAGA Takuya Date: Tue, 3 Dec 2024 22:10:46 +0900 Subject: [PATCH] chore: bump version to 0.2.0 and update metadata - Updated the version from 0.1.1 to 0.2.0 in `package.json`, `package-lock.json`, `Cargo.toml`, and `tauri.conf.json`. - Added additional metadata in `Cargo.toml`, including a more detailed description and author information. - Capitalized the project name to "Cuuri" in `Cargo.toml` and `Cargo.lock`. - Removed outdated package information from `Cargo.lock`. - These changes reflect significant updates to the application, including improvements and potential new features. --- package-lock.json | 4 ++-- package.json | 2 +- src-tauri/Cargo.lock | 40 +++++++++++++++++++-------------------- src-tauri/Cargo.toml | 8 ++++---- src-tauri/tauri.conf.json | 2 +- 5 files changed, 28 insertions(+), 28 deletions(-) diff --git a/package-lock.json b/package-lock.json index 6e73151..13ba37c 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "cuuri", - "version": "0.1.1", + "version": "0.2.0", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "cuuri", - "version": "0.1.1", + "version": "0.2.0", "dependencies": { "@tauri-apps/api": "^2", "@tauri-apps/plugin-shell": "^2", diff --git a/package.json b/package.json index 7cd9f83..c3aa041 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "cuuri", "private": true, - "version": "0.1.1", + "version": "0.2.0", "type": "module", "scripts": { "dev": "vite", diff --git a/src-tauri/Cargo.lock b/src-tauri/Cargo.lock index 06ea327..63004c6 100644 --- a/src-tauri/Cargo.lock +++ b/src-tauri/Cargo.lock @@ -2,6 +2,26 @@ # It is not intended for manual editing. version = 3 +[[package]] +name = "Cuuri" +version = "0.2.0" +dependencies = [ + "chrono", + "diesel", + "dirs", + "r2d2", + "reqwest", + "rusqlite", + "serde", + "serde_json", + "tauri", + "tauri-build", + "tauri-plugin-shell", + "tokio", + "toml 0.8.19", + "uuid", +] + [[package]] name = "addr2line" version = "0.24.2" @@ -539,26 +559,6 @@ dependencies = [ "syn 2.0.87", ] -[[package]] -name = "cuuri" -version = "0.1.1" -dependencies = [ - "chrono", - "diesel", - "dirs", - "r2d2", - "reqwest", - "rusqlite", - "serde", - "serde_json", - "tauri", - "tauri-build", - "tauri-plugin-shell", - "tokio", - "toml 0.8.19", - "uuid", -] - [[package]] name = "darling" version = "0.20.10" diff --git a/src-tauri/Cargo.toml b/src-tauri/Cargo.toml index 9364310..0ffcc36 100644 --- a/src-tauri/Cargo.toml +++ b/src-tauri/Cargo.toml @@ -1,8 +1,8 @@ [package] -name = "cuuri" -version = "0.1.1" -description = "A Tauri App" -authors = ["you"] +name = "Cuuri" +version = "0.2.0" +description = "Cuuri is a GUI client for ChatGPT built with Tauri, Vue, and TypeScript. " +authors = ["takanotume24 "] edition = "2021" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html diff --git a/src-tauri/tauri.conf.json b/src-tauri/tauri.conf.json index 13dc8f0..4f44046 100644 --- a/src-tauri/tauri.conf.json +++ b/src-tauri/tauri.conf.json @@ -1,7 +1,7 @@ { "$schema": "https://schema.tauri.app/config/2", "productName": "Cuuri", - "version": "0.1.1", + "version": "0.2.0", "identifier": "com.takanotume24.cuuri", "build": { "beforeDevCommand": "npm run dev",