Skip to content

Commit

Permalink
Updated pleco to 0.4.1 and pleco_engine to 0.1.2, to reflect the rece…
Browse files Browse the repository at this point in the history
…nt nightly changes with Heap allocations

Signed-off-by: stephenf <[email protected]>
  • Loading branch information
sfleischman105 committed Apr 17, 2018
1 parent df483d2 commit ce19f92
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ UCI (Universal Chess Interface) compatible engine.
The overall goal for this project is to utilize the efficiency of Rust to create a Chess AI matching the speed of modern chess engines.
For the engine, the majority of the code is a direct port of Stockfish's C++ code. See [their website](https://stockfishchess.org/) for
more information about the engine. As such, the credit for all of the advanced algorithms used for searching, evaluation,
and many others, go directly to the maintainers and authors of Stockfish. This project is simply for speed comparisons
and many others, go directly to the maintainers and authors of Stockfish. This project is for speed comparisons
between the two languages, as well as for educational purposes.

- [Documentation](https://docs.rs/pleco), [crates.io](https://crates.io/crates/pleco) for library functionality
Expand Down
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.0"
version = "0.4.1"
authors = ["Stephen Fleischman <[email protected]>"]
description = "A blazingly-fast chess library."
homepage = "https://github.com/sfleischman105/Pleco"
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.1" # Reminder to change in ./engine.rs
version = "0.1.2" # 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 @@ -67,7 +67,7 @@ path = "src/lib.rs"
doctest = true

[dependencies]
pleco = { path = "../pleco", version = "0.4.0" }
pleco = { path = "../pleco", version = "0.4.1" }
clippy = {version = "0.0.191", 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.1";
pub static VERSION: &str = "0.1.2";

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

0 comments on commit ce19f92

Please sign in to comment.