Skip to content

Commit

Permalink
Merge pull request #76 from odeialba/V110
Browse files Browse the repository at this point in the history
Release Version 1.1.0
  • Loading branch information
odeialba authored Oct 11, 2024
2 parents 52e136b + ce87649 commit 8d60073
Show file tree
Hide file tree
Showing 5 changed files with 23 additions and 3 deletions.
12 changes: 12 additions & 0 deletions .github/workflows/moodle-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -115,6 +115,18 @@ jobs:
- php: '8.3'
moodle-branch: 'MOODLE_404_STABLE'
database: mariadb
- php: '8.2'
moodle-branch: 'MOODLE_405_STABLE'
database: pgsql
- php: '8.2'
moodle-branch: 'MOODLE_405_STABLE'
database: mariadb
- php: '8.3'
moodle-branch: 'MOODLE_405_STABLE'
database: pgsql
- php: '8.3'
moodle-branch: 'MOODLE_405_STABLE'
database: mariadb

steps:
- name: Check out repository code
Expand Down
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# Changelog

## 1.1.0 - 2024-10-11
### Added
- CI tests for Moodle 4.5.
### Fixed
- Make options use filters.
- Fix all the ci errors.

## 1.0.9 - 2024-05-03
### Changed
- Change "Save" for "Update" when the user has already voted.
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ This plugin lets you rank multiple options in order of preference, instead of ju

This way, the most preferred option by all the voters can win, even if it is not the most popular one.

This voting method is also known as [Condorcet method](https://en.wikipedia.org/wiki/Condorcet_method).
This voting method is also known as [Condorcet method for Voting](https://en.wikipedia.org/wiki/Condorcet_method), Card Sorting, Ranked Choice Voting (RCV) or Instant Runoff Voting (IRV).

## Examples:
**Setup:**
Expand Down
1 change: 1 addition & 0 deletions tests/privacy/provider_test.php
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,7 @@ final class provider_test extends \core_privacy\tests\provider_testcase {
* {@inheritdoc}
*/
protected function setUp(): void {
parent::setUp();
$this->resetAfterTest();

global $DB;
Expand Down
4 changes: 2 additions & 2 deletions version.php
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,8 @@
defined('MOODLE_INTERNAL') || die();

$plugin->component = 'mod_sortvoting';
$plugin->release = '1.0.9';
$plugin->version = 2024050300;
$plugin->release = '1.1.0';
$plugin->version = 2024101100;
$plugin->requires = 2022041908;
$plugin->maturity = MATURITY_STABLE;
$plugin->dependencies = [];

0 comments on commit 8d60073

Please sign in to comment.