Skip to content

Commit

Permalink
Condorcet 1.8.1
Browse files Browse the repository at this point in the history
  • Loading branch information
julien-boudry committed Jan 5, 2019
1 parent 00564f9 commit bab9526
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 2 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
2 changes: 1 addition & 1 deletion __CondorcetAutoload.php
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion lib/Condorcet.php
Original file line number Diff line number Diff line change
Expand Up @@ -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';

Expand Down

0 comments on commit bab9526

Please sign in to comment.