Skip to content

Commit

Permalink
Version 0.8.7
Browse files Browse the repository at this point in the history
Vic3 1.4.0
Ck3 1.10.0.1

Bugfixes
* ck3 activity phase is_valid has root = activity

Fix false positives
* ck3 allow multiple aliases fields in game concepts
* ck3 allow arbitrary flags in game rules
* ck3 allow "icon" in court-type artifact slots
* datatypes: don't validate arguments if there are multiple conflicting
  possibilities

Features
* vic3 update to 1.4.0 (Irish Breakfast)
* ck3 replace sounds/GUIDs.txt with sound list taken from object browser
* ck3 validate culture tradition categories
* allow `abs = yes` in script values
  • Loading branch information
amtep committed Aug 29, 2023
1 parent e572237 commit e5ef95b
Show file tree
Hide file tree
Showing 6 changed files with 13 additions and 13 deletions.
10 changes: 5 additions & 5 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 @@ -10,7 +10,7 @@ members = [

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

[dependencies]
tiger-lib = { version = "0.8.6", path = "..", features = ["ck3"] }
tiger-lib = { version = "0.8.7", path = "..", features = ["ck3"] }

anyhow = "1"
clap = { version = "4", 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,12 +1,12 @@
[package]
name = "imperator-tiger"
version = "0.8.6"
version = "0.8.7"
edition = "2021"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
tiger-lib = { version = "0.8.6", path = "..", default-features = false, features = ["imperator"] }
tiger-lib = { version = "0.8.7", path = "..", default-features = false, features = ["imperator"] }
anyhow = "1"
clap = { version = "4", features = ["derive"] }

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 = "0.8.2"
version = "0.8.7"
edition = "2021"
license = "GPL-3.0-or-later"
description = "Utilities for maintaining tiger-lib"
Expand Down
4 changes: 2 additions & 2 deletions vic3-tiger/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "vic3-tiger"
version = "0.8.6"
version = "0.8.7"
edition = "2021"
license = "GPL-3.0-or-later"
default-run = "vic3-tiger"
Expand All @@ -15,7 +15,7 @@ rust-version = "1.67"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
tiger-lib = { version = "0.8.6", path = "..", default-features = false, features = ["vic3"] }
tiger-lib = { version = "0.8.7", path = "..", default-features = false, features = ["vic3"] }

anyhow = "1"
clap = { version = "4", features = ["derive"] }
Expand Down

0 comments on commit e5ef95b

Please sign in to comment.