From f9e9b52a599468d33bea974c3bff872fa2ea040d Mon Sep 17 00:00:00 2001 From: Sergei Semichev Date: Tue, 22 Mar 2022 13:58:27 +0300 Subject: [PATCH] Binbo 4.0.2 --- CHANGELOG.md | 2 +- README.adoc | 4 ++-- src/binbo.app.src | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index dbe5d98..ede2d48 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,7 +2,7 @@ All notable changes to this project will be documented in this file. -## [Unreleased] +## [4.0.2] - Fixed: the fifty-move rule was not applied correctly. diff --git a/README.adoc b/README.adoc index 6fbbf31..8e5e18e 100644 --- a/README.adoc +++ b/README.adoc @@ -66,7 +66,7 @@ Add Binbo as a dependency to your `rebar.config` file: [source,erlang] ---- {deps, [ - {binbo, "4.0.1"} + {binbo, "4.0.2"} ]}. ---- @@ -78,7 +78,7 @@ Add Binbo as a dependency to your `mix.exs` file: ---- defp deps do [ - {:binbo, "~> 4.0.1"} + {:binbo, "~> 4.0.2"} ] end ---- diff --git a/src/binbo.app.src b/src/binbo.app.src index 0060361..02fd6bf 100644 --- a/src/binbo.app.src +++ b/src/binbo.app.src @@ -1,6 +1,6 @@ {application, binbo, [ {description, "Full-featured Chess representation using Bitboards"}, - {vsn, "4.0.1"}, + {vsn, "4.0.2"}, {modules, []}, {registered, [binbo_sup]}, {applications, [kernel, stdlib, compiler, syntax_tools, uef]},