From bf4ba51949ee8f03807060b6e8278a1ecd9b2712 Mon Sep 17 00:00:00 2001 From: Sergei Semichev Date: Sat, 9 Jul 2022 16:28:48 +0300 Subject: [PATCH] Binbo 4.0.3 --- CHANGELOG.md | 4 +++- README.adoc | 2 +- src/binbo.app.src | 2 +- 3 files changed, 5 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 38c9ad2..0b62743 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,9 +2,11 @@ All notable changes to this project will be documented in this file. -## [Unreleased] +## [4.0.3] - Unused function `binbo_position:get_side_indexes/2` deleted. +- Fixed OTP-25 dialyzer warnings. +- Added support for testing on Apple silicon SoC. ## [4.0.2] - 2022-03-22 diff --git a/README.adoc b/README.adoc index 74b5c76..120f012 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.2"} + {binbo, "4.0.3"} ]}. ---- diff --git a/src/binbo.app.src b/src/binbo.app.src index 02fd6bf..148fd28 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.2"}, + {vsn, "4.0.3"}, {modules, []}, {registered, [binbo_sup]}, {applications, [kernel, stdlib, compiler, syntax_tools, uef]},