diff --git a/.vscode/settings.json b/.vscode/settings.json index 7c35e24..b7cd80a 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -15,6 +15,6 @@ "zeroize", "zeroizing" ], - "conventionalCommits.scopes": ["deps"], + "conventionalCommits.scopes": ["deps", "release"], "typescript.tsdk": "node_modules/typescript/lib" } diff --git a/CHANGELOG.md b/CHANGELOG.md index d881f65..c82dbe0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -47,6 +47,7 @@ All notable changes to this project will be documented in this file. - :sparkles: Allow user setting password to the keys. - :sparkles: Refresh SignView. - :bug: Complete signing feature and start working on verifying. +- :rocket: Finish main functions. ### Miscellaneous Tasks diff --git a/cliff.toml b/cliff.toml index bd2c65f..10fab21 100644 --- a/cliff.toml +++ b/cliff.toml @@ -56,7 +56,7 @@ commit_parsers = [ { message = "^refactor", group = "Refactor" }, { message = "^style", group = "Styling" }, { message = "^test", group = "Testing" }, - { message = "^chore\\(release\\): prepare for", skip = true }, + { message = "^chore\\(release\\)", skip = true }, { message = "^chore\\(deps\\)", skip = true }, { message = "^chore\\(pr\\)", skip = true }, { message = "^chore\\(pull\\)", skip = true }, diff --git a/package.json b/package.json index 7924cd9..70c5ed8 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "digital-signature", "private": true, - "version": "0.1.0", + "version": "1.0.0", "type": "module", "scripts": { "build": "run-p check build-only", diff --git a/src-tauri/Cargo.lock b/src-tauri/Cargo.lock index 7b97228..0c11404 100644 --- a/src-tauri/Cargo.lock +++ b/src-tauri/Cargo.lock @@ -797,7 +797,7 @@ dependencies = [ [[package]] name = "digital-signature" -version = "0.1.0" +version = "1.0.0" dependencies = [ "anyhow", "digital-signature-crypto", @@ -811,7 +811,7 @@ dependencies = [ [[package]] name = "digital-signature-crypto" -version = "0.1.0" +version = "1.0.0" dependencies = [ "async-trait", "chrono", diff --git a/src-tauri/Cargo.toml b/src-tauri/Cargo.toml index a2bd16c..c9172b5 100644 --- a/src-tauri/Cargo.toml +++ b/src-tauri/Cargo.toml @@ -6,7 +6,7 @@ authors = ["Jisu-Woniu"] edition = "2021" license = "MIT" repository = "https://github.com/Jisu-Woniu/digital-signature/" -version = "0.1.0" +version = "1.0.0" [package] name = "digital-signature" @@ -30,7 +30,7 @@ tokio = { version = "1.34.0", features = ["fs"] } [dependencies.digital-signature-crypto] path = "crypto" -version = "0.1.0" +version = "1.0.0" [dependencies.tauri] features = [ diff --git a/src-tauri/Tauri.toml b/src-tauri/Tauri.toml index e72a514..fca5527 100644 --- a/src-tauri/Tauri.toml +++ b/src-tauri/Tauri.toml @@ -7,7 +7,7 @@ withGlobalTauri = false [package] productName = "digital-signature" -version = "0.1.0" +version = "1.0.0" [tauri]