From 63d2be95aabc51f2ed5aa795bc031eef920af66f Mon Sep 17 00:00:00 2001 From: Julien Boudry Date: Fri, 7 Apr 2023 16:14:23 +0200 Subject: [PATCH] Prepare 4.3.1 --- CHANGELOG.md | 5 +++++ src/Condorcet.php | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index d30cefc5..707a3763 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,11 @@ CHANGELOG ========= All notable changes to this project will be documented in this file. +## [v4.3.1] - 2023-04-07 + +### Changed +- Force Terminal Ansi24 (truecolor) for Docker build instead of Ansi4. + ## [v4.3.0] - 2023-03-12 ### Description Require `PHP 8.2`. Include a new random vote generator API. Provide some devcontainers for dev and command line usage. diff --git a/src/Condorcet.php b/src/Condorcet.php index 38a15ad2..2c4c11e9 100644 --- a/src/Condorcet.php +++ b/src/Condorcet.php @@ -52,7 +52,7 @@ abstract class Condorcet final public const HOMEPAGE = 'https://github.com/julien-boudry/Condorcet'; #[PublicAPI] - final public const VERSION = '4.3.0'; + final public const VERSION = '4.3.1'; #[PublicAPI] final public const CONDORCET_BASIC_CLASS = Algo\Methods\CondorcetBasic::class;