Skip to content

Commit

Permalink
Version 0.8.10
Browse files Browse the repository at this point in the history
Vic3 1.5.12
Ck3 1.11.3

False positives
* Support macro calls with `OPERATOR = >=`
* Saved scope handling in modifier blocks
* ck3: house unity stage validation
* ck3: `tax_slot_type` in government definition
* gui: allow `mirror = horizontal|vertical`

Features
* Comprehensive support for triggers with `( )` arguments
* Put directory name in msg about file in unexpected directory
* vic3: update to 1.5.12
* ck3: update to 1.11.3

Other
* Move minimum rust version from 1.67 to 1.70
  • Loading branch information
amtep committed Jan 30, 2024
1 parent 2003550 commit d93f8da
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.9"
version = "0.8.10"
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.9"
version = "0.8.10"
edition = "2021"
license = "GPL-3.0-or-later"
default-run = "ck3-tiger"
Expand All @@ -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.8.9", path = "..", features = ["ck3"] }
tiger-lib = { version = "0.8.10", 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,13 +1,13 @@
[package]
name = "imperator-tiger"
version = "0.8.9"
version = "0.8.10"
edition = "2021"
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.8.9", path = "..", default-features = false, features = ["imperator"] }
tiger-lib = { version = "0.8.10", 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.9"
version = "0.8.10"
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.9"
version = "0.8.10"
edition = "2021"
license = "GPL-3.0-or-later"
default-run = "vic3-tiger"
Expand All @@ -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.8.9", path = "..", default-features = false, features = ["vic3"] }
tiger-lib = { version = "0.8.10", path = "..", default-features = false, features = ["vic3"] }

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

0 comments on commit d93f8da

Please sign in to comment.