Skip to content

Commit

Permalink
Version 1.4.0
Browse files Browse the repository at this point in the history
CK3 1.14.0.2
Vic3 1.7.6
Imperator 2.0.4

Features
* ck3: update to 1.14
* ck3: support new parser features described in reader_export/
* ck3: validate references to legends
* vic3: check `_discovered_resource` localization
* validate achievements now that mods can add them

Fix false positives
* don't report errors in vanilla on_actions for mods that override them
* ck3: support `"has_trait_xp(trait|track)"` special syntax
* ck3: support claimant field for `setup_invasion_cb`
* ck3: fix scopes for government `opinion_of_liege` field
  • Loading branch information
amtep committed Nov 13, 2024
1 parent bb59874 commit 1ae616f
Show file tree
Hide file tree
Showing 7 changed files with 18 additions and 18 deletions.
12 changes: 6 additions & 6 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ members = [

[package]
name = "tiger-lib"
version = "1.3.0"
version = "1.4.0"
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."
Expand Down
6 changes: 3 additions & 3 deletions ck3-tiger/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "ck3-tiger"
version = "1.3.0"
version = "1.4.0"
edition = "2021"
license = "GPL-3.0-or-later"
default-run = "ck3-tiger"
Expand All @@ -15,8 +15,8 @@ rust-version = "1.75"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
tiger-lib = { path = "..", version = "1.3.0", features = ["ck3"] }
tiger-bin-shared = { path = "../tiger-bin-shared", version = "1.3.0", features = ["ck3"] }
tiger-lib = { path = "..", version = "1.4.0", features = ["ck3"] }
tiger-bin-shared = { path = "../tiger-bin-shared", version = "1.4.0", features = ["ck3"] }

anyhow = "1"
clap = { version = "4.5", features = ["derive"] }
Expand Down
4 changes: 2 additions & 2 deletions imperator-tiger/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "imperator-tiger"
version = "1.3.0"
version = "1.4.0"
edition = "2021"
license = "GPL-3.0-or-later"
default-run = "imperator-tiger"
Expand All @@ -15,7 +15,7 @@ rust-version = "1.75"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
tiger-bin-shared = { path = "../tiger-bin-shared", version = "1.3.0", default-features = false, features = [
tiger-bin-shared = { path = "../tiger-bin-shared", version = "1.4.0", default-features = false, features = [
"imperator",
] }

Expand Down
4 changes: 2 additions & 2 deletions tiger-bin-shared/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "tiger-bin-shared"
version = "1.3.0"
version = "1.4.0"
edition = "2021"
license = "GPL-3.0-or-later"
description = "Shared binary library for ck3-tiger, vic3-tiger, and imperator-tiger."
Expand All @@ -10,7 +10,7 @@ readme = "../README.md"
rust-version = "1.75"

[dependencies]
tiger-lib = { path = "..", version = "1.3.0", default-features = false }
tiger-lib = { path = "..", version = "1.4.0", default-features = false }

anyhow = "1"
cfg-if = "1"
Expand Down
2 changes: 1 addition & 1 deletion utils/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "utils"
version = "1.3.0"
version = "1.4.0"
edition = "2021"
license = "GPL-3.0-or-later"
description = "Utilities for maintaining tiger-lib"
Expand Down
6 changes: 3 additions & 3 deletions vic3-tiger/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "vic3-tiger"
version = "1.3.0"
version = "1.4.0"
edition = "2021"
license = "GPL-3.0-or-later"
default-run = "vic3-tiger"
Expand All @@ -15,8 +15,8 @@ rust-version = "1.75"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
tiger-lib = { path = "..", version = "1.3.0", default-features = false, features = ["vic3"] }
tiger-bin-shared = { path = "../tiger-bin-shared", version = "1.3.0", default-features = false, features = ["vic3"] }
tiger-lib = { path = "..", version = "1.4.0", default-features = false, features = ["vic3"] }
tiger-bin-shared = { path = "../tiger-bin-shared", version = "1.4.0", default-features = false, features = ["vic3"] }

anyhow = "1"

Expand Down

0 comments on commit 1ae616f

Please sign in to comment.