diff --git a/CHANGELOG.md b/CHANGELOG.md index a44b39d5..6ee0ef63 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,14 @@ CHANGELOG ========= All notable changes to this project will be documented in this file. +## [v1.8.1] - 2019-01-05 +### Description +Tests for PHP 7.3 and prevent PHP >=7.4 deprecations. + +### Added +- Tests for PHP 7.3 +- Prevent PHP 7.4 deprecations. + ## [v1.8.0] - 2018-07-22 ### Description You can add custom constraint to force votes to meet certain criteria. diff --git a/__CondorcetAutoload.php b/__CondorcetAutoload.php index ba6089fb..a169f501 100644 --- a/__CondorcetAutoload.php +++ b/__CondorcetAutoload.php @@ -7,7 +7,7 @@ https://github.com/julien-boudry/Condorcet */ -// Self Autoload function coming after and as a fallback of composer or other framework PSR autoload implementation. Composer or framework autoload will alway be will be preferred to that custom function. Exept for algorithms class. +// Self Autoload function coming after and as a fallback of composer or other framework PSR autoload implementation. Composer or framework autoload will alway be will be preferred to that custom function. spl_autoload_register(function ($class) { // project-specific namespace prefix diff --git a/lib/Condorcet.php b/lib/Condorcet.php index 7e3ba8b6..caada21f 100644 --- a/lib/Condorcet.php +++ b/lib/Condorcet.php @@ -37,7 +37,7 @@ abstract class Condorcet { /////////// CONSTANTS /////////// - public const VERSION = '1.8.0'; + public const VERSION = '1.8.1'; public const CONDORCET_BASIC_CLASS = __NAMESPACE__.'\\Algo\\Methods\\CondorcetBasic';