[ALL] Bump Version

This commit is contained in:
Ben C 2023-05-08 08:56:36 -04:00
parent 9c6be3fb90
commit 5f7e4b58a6
No known key found for this signature in database
GPG Key ID: 556064B755159BBC
6 changed files with 106 additions and 104 deletions

8
Cargo.lock generated
View File

@ -2364,7 +2364,7 @@ checksum = "b15813163c1d831bf4a13c3610c05c0d03b39feb07f7e09fa234dac9b15aaf39"
[[package]]
name = "owmods_cli"
version = "0.5.1"
version = "0.6.0"
dependencies = [
"anyhow",
"clap",
@ -2379,7 +2379,7 @@ dependencies = [
[[package]]
name = "owmods_core"
version = "0.5.1"
version = "0.6.0"
dependencies = [
"anyhow",
"directories",
@ -2404,7 +2404,7 @@ dependencies = [
[[package]]
name = "owmods_gui"
version = "0.5.1"
version = "0.6.0"
dependencies = [
"anyhow",
"log",
@ -4838,7 +4838,7 @@ dependencies = [
[[package]]
name = "xtask"
version = "0.1.0"
version = "0.6.0"
dependencies = [
"anyhow",
"clap",

View File

@ -2,7 +2,7 @@
name = "owmods_cli"
authors = ["Bwc9876 <bwc9876@gmail.com>"]
description = "A CLI Tool To Manage OWML Mods"
version = "0.5.1"
version = "0.6.0"
edition = "2021"
readme = "./README.md"
repository = "https://github.com/Bwc9876/ow-mod-man/"
@ -12,7 +12,7 @@ license = "GPL-3.0-or-later"
depends = "libssl1.1"
[dependencies]
owmods_core = { version = "0.5.1", path = "../owmods_core"}
owmods_core = { version = "0.6.0", path = "../owmods_core"}
clap = { version = "4.1.1", features = ["derive"] }
colored = "2.0.0"
anyhow = "1.0.68"

View File

@ -2,7 +2,7 @@
name = "owmods_core"
authors = ["Bwc9876 <bwc9876@gmail.com>"]
description = "The core library for the Outer Wilds Mod Manager"
version = "0.5.1"
version = "0.6.0"
edition = "2021"
readme = "./README.md"
license = "GPL-3.0-or-later"

View File

@ -1,6 +1,6 @@
[package]
name = "owmods_gui"
version = "0.5.1"
version = "0.6.0"
license = "GPL-3.0-or-later"
edition = "2021"
@ -8,7 +8,7 @@ edition = "2021"
tauri-build = { version = "1.3.0", features = [] }
[dependencies]
owmods_core = { version = "0.5.1", path = "../../owmods_core" }
owmods_core = { version = "0.6.0", path = "../../owmods_core" }
serde_json = "1.0"
serde = { version = "1.0", features = ["derive"] }
tauri = { version = "1.3.0", features = ["app-all", "dialog-ask", "dialog-confirm", "dialog-message", "dialog-open", "dialog-save", "os-all", "shell-open", "updater", "window-close", "window-set-title"] }

View File

@ -1,97 +1,99 @@
{
"build": {
"beforeBuildCommand": "cd frontend && pnpm run build",
"beforeDevCommand": "cd frontend && pnpm run dev",
"devPath": "http://localhost:5173",
"distDir": "../dist"
},
"package": {
"productName": "Outer Wilds Mod Manager",
"version": "0.5.1"
},
"tauri": {
"allowlist": {
"dialog": {
"confirm": true,
"open": true,
"message": true,
"save": true,
"ask": true
},
"app": {
"all": true,
"hide": false,
"show": false
},
"os": {
"all": true
},
"shell": {
"open": "(^https://github.com/)|(^https://discord.gg/)"
},
"window": {
"setTitle": true,
"close": true
}
"build": {
"beforeBuildCommand": "cd frontend && pnpm run build",
"beforeDevCommand": "cd frontend && pnpm run dev",
"devPath": "http://localhost:5173",
"distDir": "../dist"
},
"bundle": {
"active": true,
"category": "Game",
"copyright": "",
"deb": {
"depends": []
},
"externalBin": [],
"icon": [
"icons/32x32.png",
"icons/128x128.png",
"icons/128x128@2x.png",
"icons/icon.icns",
"icons/icon.ico"
],
"identifier": "com.bwc9876.owmods-gui",
"longDescription": "A manager for Outer Wilds mods",
"macOS": {
"entitlements": null,
"exceptionDomain": "",
"frameworks": [],
"providerShortName": null,
"signingIdentity": null
},
"resources": [],
"shortDescription": "",
"targets": "all",
"windows": {
"certificateThumbprint": null,
"digestAlgorithm": "sha256",
"timestampUrl": ""
}
"package": {
"productName": "Outer Wilds Mod Manager",
"version": "0.6.0"
},
"security": {
"csp": "default-src 'self'"
},
"updater": {
"active": true,
"dialog": true,
"windows": {
"installMode": "basicUi"
},
"pubkey": "dW50cnVzdGVkIGNvbW1lbnQ6IG1pbmlzaWduIHB1YmxpYyBrZXk6IDkzRURBNzdENEVCREU1NDYKUldSRzViMU9mYWZ0azRoODZIdmVGWUZxVTNQRUVXU2hOTllqcGM4N2RRNjFEN2N3cnhXbW45V0sK",
"endpoints": [
"https://github.com/Bwc9876/ow-mod-man/releases/latest/download/latest.json",
"https://github.com/ow-mods/ow-mod-man/releases/latest/download/latest.json"
]
},
"windows": [
{
"fullscreen": false,
"height": 750,
"minHeight": 400,
"resizable": true,
"title": "Outer Wilds Mod Manager",
"width": 850,
"minWidth": 600
}
]
}
}
"tauri": {
"allowlist": {
"dialog": {
"confirm": true,
"open": true,
"message": true,
"save": true,
"ask": true
},
"app": {
"all": true,
"hide": false,
"show": false
},
"os": {
"all": true
},
"shell": {
"open": "(^https://github.com/)|(^https://discord.gg/)"
},
"window": {
"setTitle": true,
"close": true
}
},
"bundle": {
"active": true,
"category": "Game",
"copyright": "",
"deb": {
"depends": [
"libssl1.1"
]
},
"externalBin": [],
"icon": [
"icons/32x32.png",
"icons/128x128.png",
"icons/128x128@2x.png",
"icons/icon.icns",
"icons/icon.ico"
],
"identifier": "com.bwc9876.owmods-gui",
"longDescription": "A manager for Outer Wilds mods",
"macOS": {
"entitlements": null,
"exceptionDomain": "",
"frameworks": [],
"providerShortName": null,
"signingIdentity": null
},
"resources": [],
"shortDescription": "",
"targets": "all",
"windows": {
"certificateThumbprint": null,
"digestAlgorithm": "sha256",
"timestampUrl": ""
}
},
"security": {
"csp": "default-src 'self'"
},
"updater": {
"active": true,
"dialog": true,
"windows": {
"installMode": "basicUi"
},
"pubkey": "dW50cnVzdGVkIGNvbW1lbnQ6IG1pbmlzaWduIHB1YmxpYyBrZXk6IDkzRURBNzdENEVCREU1NDYKUldSRzViMU9mYWZ0azRoODZIdmVGWUZxVTNQRUVXU2hOTllqcGM4N2RRNjFEN2N3cnhXbW45V0sK",
"endpoints": [
"https://github.com/Bwc9876/ow-mod-man/releases/latest/download/latest.json",
"https://github.com/ow-mods/ow-mod-man/releases/latest/download/latest.json"
]
},
"windows": [
{
"fullscreen": false,
"height": 750,
"minHeight": 400,
"resizable": true,
"title": "Outer Wilds Mod Manager",
"width": 850,
"minWidth": 600
}
]
}
}

View File

@ -1,6 +1,6 @@
[package]
name = "xtask"
version = "0.1.0"
version = "0.6.0"
edition = "2021"
[dependencies]