From 56ee1be5e312b68b4ca3e3f4884cbefdd3136d46 Mon Sep 17 00:00:00 2001 From: Julien Boudry Date: Sun, 28 Jan 2024 12:20:37 +0100 Subject: [PATCH] Prepare 4.6 --- CHANGELOG.md | 8 ++++++++ README.md | 4 ++-- src/Condorcet.php | 2 +- 3 files changed, 11 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index f7dbc4c9..958704a4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,14 @@ CHANGELOG ========= All notable changes to this project will be documented in this file. +## [v4.6.0] - 2024-01-28 +### Description +Half-migration of tests to PestPHP. + +## [v4.5.1] - 2023-12-01 +### Description +Support for Symfony 7 components + ## [v4.5.0] - 2023-07-11 ### Description A major release, including two new voting methods, additions to the internal API, and additions to the public API. It also comes with its fair share of refinements and fixes in various areas, notably the Console. diff --git a/README.md b/README.md index 9b9e3ef1..7d4cd13a 100644 --- a/README.md +++ b/README.md @@ -73,8 +73,8 @@ _Both approaches can handle up to hundreds of millions of votes (or more) on mod | Version | PHP Requirements | State | Support | --- | --- | --- | --- | -| 4.5 | 8.2 | Stable | ✔ _support provided_ -| 4.2 | 8.1 | Old Stable | ✔ _support provided_ +| 4.6 | 8.2 | Stable | ✔ _support provided_ +| 4.5 | 8.2 | Old Stable | ✔ _support provided_ | 3.x | 8.1 | Old Stable | ❌ _not any support_ | 2.2 | 7.4 | Old Stable | ❌ _support requiring some bait_ | 2.0 | 7.1 | Old Stable | ❌ _not any support_ diff --git a/src/Condorcet.php b/src/Condorcet.php index 33c52707..bef08c0a 100644 --- a/src/Condorcet.php +++ b/src/Condorcet.php @@ -54,7 +54,7 @@ abstract class Condorcet final public const HOMEPAGE = 'https://github.com/julien-boudry/Condorcet'; #[PublicAPI] - final public const VERSION = '4.5.1'; + final public const VERSION = '4.6.0'; #[PublicAPI] final public const CONDORCET_BASIC_CLASS = Algo\Methods\CondorcetBasic::class;