From bbc07048a3b4bea2f3fe93c5562e57ad7e1f3e87 Mon Sep 17 00:00:00 2001 From: Alexander Kernozhitsky Date: Thu, 14 Jul 2022 22:35:00 +0300 Subject: [PATCH] Bump crate version --- chess/Cargo.toml | 6 +++--- chess_base/Cargo.toml | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/chess/Cargo.toml b/chess/Cargo.toml index 51d290d..1609844 100644 --- a/chess/Cargo.toml +++ b/chess/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "owlchess" -version = "0.2.0" +version = "0.2.1" edition = "2021" description = "Yet another chess library for Rust" authors = ["Alexander Kernozhitsky "] @@ -12,12 +12,12 @@ keywords = ["games", "chess"] categories = ["games", "parser-implementations"] [dependencies] -owlchess_base = { path = "../chess_base", version = "0.2.0" } +owlchess_base = { path = "../chess_base", version = "0.2.1" } thiserror = "1.0.31" arrayvec = "0.7.2" [build-dependencies] -owlchess_base = { path = "../chess_base", version = "0.2.0" } +owlchess_base = { path = "../chess_base", version = "0.2.1" } rand_xoshiro = "0.6.0" rand_core = "0.6.3" diff --git a/chess_base/Cargo.toml b/chess_base/Cargo.toml index 78dec93..6f03b07 100644 --- a/chess_base/Cargo.toml +++ b/chess_base/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "owlchess_base" -version = "0.2.0" +version = "0.2.1" edition = "2021" description = "Base types for owlchess (not indended to use directly)" authors = ["Alexander Kernozhitsky "]