Skip to content

Commit

Permalink
Update pleco_engine to 0.1.3 and pleco to 0.4.2
Browse files Browse the repository at this point in the history
Signed-off-by: Stephen Fleischman <[email protected]>
  • Loading branch information
sfleischman105 committed May 15, 2018
1 parent dcb5604 commit 75e8bfe
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion pleco/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "pleco"
version = "0.4.1"
version = "0.4.2"
authors = ["Stephen Fleischman <[email protected]>"]
description = "A blazingly-fast chess library."
homepage = "https://github.com/sfleischman105/Pleco"
Expand Down
2 changes: 1 addition & 1 deletion pleco/src/board/perft.rs
Original file line number Diff line number Diff line change
Expand Up @@ -170,7 +170,7 @@ mod tests {
assert_eq!(193690690, perft(&b,5));
}

// THis passes, but we're gonna ignore it as it takes a long time to use.
// This passes, but we're gonna ignore it as it takes a long time to use.
#[ignore]
#[test]
fn perft_kiwipete_all() {
Expand Down
4 changes: 2 additions & 2 deletions pleco_engine/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "pleco_engine"
version = "0.1.2" # Reminder to change in ./engine.rs
version = "0.1.3" # Reminder to change in ./engine.rs
authors = ["Stephen Fleischman <[email protected]>"]
description = "A blazingly-fast Chess AI."
homepage = "https://github.com/sfleischman105/Pleco"
Expand Down Expand Up @@ -57,7 +57,7 @@ path = "src/lib.rs"
doctest = true

[dependencies]
pleco = { path = "../pleco", version = "0.4.1" }
pleco = { path = "../pleco", version = "0.4.2" }
clippy = {version = "0.0.200", optional = true}
chrono = "0.4.1"
rand = "0.4.2"
Expand Down
2 changes: 1 addition & 1 deletion pleco_engine/src/engine.rs
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ use num_cpus;

pub static ID_NAME: &str = "Pleco";
pub static ID_AUTHORS: &str = "Stephen Fleischman";
pub static VERSION: &str = "0.1.2";
pub static VERSION: &str = "0.1.3";

#[derive(PartialEq)]
enum SearchType {
Expand Down

0 comments on commit 75e8bfe

Please sign in to comment.