Skip to content

Commit

Permalink
Release Version 1.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
odeialba committed Oct 11, 2024
1 parent 52e136b commit 3ff6069
Show file tree
Hide file tree
Showing 4 changed files with 22 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
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 3ff6069

Please sign in to comment.