From d023d087ee86da8b082f2e7fd78de4fa3273e791 Mon Sep 17 00:00:00 2001 From: Richard Braakman Date: Wed, 27 Mar 2024 03:36:34 +0200 Subject: [PATCH] Version 0.9.4 CK3 1.12.3 Vic3 1.6.2 Imperator 2.0.4 Bugfixes: * ck3: fix crashing bug in character interaction validation * load ordering fix: if for example a vanilla religion is overridden by a mod, discard that religion's faiths too. * same with for example flags set for a trait that was overridden Features: * "ck3-tiger update" to update the program to the latest release * ck3: validate localization_values blocks --- Cargo.lock | 10 +++++----- Cargo.toml | 2 +- ck3-tiger/Cargo.toml | 4 ++-- imperator-tiger/Cargo.toml | 4 ++-- utils/Cargo.toml | 2 +- vic3-tiger/Cargo.toml | 4 ++-- 6 files changed, 13 insertions(+), 13 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index d85a909e..c0d9674f 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -268,7 +268,7 @@ dependencies = [ [[package]] name = "ck3-tiger" -version = "0.9.3" +version = "0.9.4" dependencies = [ "ansiterm", "anyhow", @@ -911,7 +911,7 @@ dependencies = [ [[package]] name = "imperator-tiger" -version = "0.9.3" +version = "0.9.4" dependencies = [ "ansiterm", "anyhow", @@ -1890,7 +1890,7 @@ dependencies = [ [[package]] name = "tiger-lib" -version = "0.9.3" +version = "0.9.4" dependencies = [ "ahash", "ansiterm", @@ -2138,7 +2138,7 @@ checksum = "711b9620af191e0cdc7468a8d14e709c3dcdb115b36f838e601583af800a370a" [[package]] name = "utils" -version = "0.9.3" +version = "0.9.4" dependencies = [ "anyhow", "clap", @@ -2160,7 +2160,7 @@ checksum = "49874b5167b65d7193b8aba1567f5c7d93d001cafc34600cee003eda787e483f" [[package]] name = "vic3-tiger" -version = "0.9.3" +version = "0.9.4" dependencies = [ "ansiterm", "anyhow", diff --git a/Cargo.toml b/Cargo.toml index 68cb3924..5f5696c3 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -4,7 +4,7 @@ members = ["ck3-tiger", "vic3-tiger", "imperator-tiger", "utils", "."] [package] name = "tiger-lib" -version = "0.9.3" +version = "0.9.4" edition = "2021" license = "GPL-3.0-or-later" description = "Library used by the tools ck3-tiger, vic3-tiger, and imperator-tiger. This library holds the bulk of the code for them. It can be built either for ck3-tiger with the feature ck3, or for vic3-tiger with the feature vic3, or for imperator-tiger with the feature imperator, but not both at the same time." diff --git a/ck3-tiger/Cargo.toml b/ck3-tiger/Cargo.toml index 9ce4c57a..962deb34 100644 --- a/ck3-tiger/Cargo.toml +++ b/ck3-tiger/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ck3-tiger" -version = "0.9.3" +version = "0.9.4" edition = "2021" license = "GPL-3.0-or-later" default-run = "ck3-tiger" @@ -15,7 +15,7 @@ rust-version = "1.70" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -tiger-lib = { version = "0.9.3", path = "..", features = ["ck3"] } +tiger-lib = { version = "0.9.4", path = "..", features = ["ck3"] } anyhow = "1" clap = { version = "~4.4", features = ["derive"] } diff --git a/imperator-tiger/Cargo.toml b/imperator-tiger/Cargo.toml index 96862270..d5935bb2 100644 --- a/imperator-tiger/Cargo.toml +++ b/imperator-tiger/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "imperator-tiger" -version = "0.9.3" +version = "0.9.4" edition = "2021" license = "GPL-3.0-or-later" default-run = "imperator-tiger" @@ -15,7 +15,7 @@ rust-version = "1.70" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -tiger-lib = { version = "0.9.3", path = "..", default-features = false, features = ["imperator"] } +tiger-lib = { version = "0.9.4", path = "..", default-features = false, features = ["imperator"] } anyhow = "1" clap = { version = "~4.4", features = ["derive"] } diff --git a/utils/Cargo.toml b/utils/Cargo.toml index a91eda3e..2bb3017b 100644 --- a/utils/Cargo.toml +++ b/utils/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "utils" -version = "0.9.3" +version = "0.9.4" edition = "2021" license = "GPL-3.0-or-later" description = "Utilities for maintaining tiger-lib" diff --git a/vic3-tiger/Cargo.toml b/vic3-tiger/Cargo.toml index 99c12974..55e82fc2 100644 --- a/vic3-tiger/Cargo.toml +++ b/vic3-tiger/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "vic3-tiger" -version = "0.9.3" +version = "0.9.4" edition = "2021" license = "GPL-3.0-or-later" default-run = "vic3-tiger" @@ -15,7 +15,7 @@ rust-version = "1.70" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -tiger-lib = { version = "0.9.3", path = "..", default-features = false, features = ["vic3"] } +tiger-lib = { version = "0.9.4", path = "..", default-features = false, features = ["vic3"] } anyhow = "1" clap = { version = "~4.4", features = ["derive"] }