Skip to content

Commit 0d03954

Browse files
committed
Increment version to 0.8.3 in package.json, Cargo.toml, Cargo.lock, and tauri.conf.json: Updated the application version across multiple files to reflect the latest changes and improvements, ensuring consistency in versioning throughout the project. Additionally, modified default.json to allow requests from any URL with port specification, enhancing the application's capabilities.
1 parent f61066d commit 0d03954

5 files changed

Lines changed: 6 additions & 6 deletions

File tree

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "pasteai",
33
"private": true,
4-
"version": "0.8.2",
4+
"version": "0.8.3",
55
"type": "module",
66
"scripts": {
77
"dev": "vite",

src-tauri/Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src-tauri/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "pasteAI"
3-
version = "0.8.2"
3+
version = "0.8.3"
44
description = "A Tauri App"
55
authors = ["you"]
66
edition = "2021"

src-tauri/capabilities/default.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,10 @@
1111
"identifier": "http:default",
1212
"allow": [
1313
{
14-
"url": "https://*"
14+
"url": "https://*:*"
1515
},
1616
{
17-
"url": "http://*"
17+
"url": "http://*:*"
1818
}
1919
]
2020
},

src-tauri/tauri.conf.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"$schema": "https://schema.tauri.app/config/2",
33
"productName": "pasteai",
4-
"version": "0.8.2",
4+
"version": "0.8.3",
55
"identifier": "com.pasteai.app",
66
"build": {
77
"beforeDevCommand": "pnpm dev",

0 commit comments

Comments
 (0)