Skip to content

Commit 999f2cb

Browse files
author
Mike Churchward
committed
Setting up for 3.9.1 release.
1 parent f74b2d8 commit 999f2cb

File tree

3 files changed

+34
-3
lines changed

3 files changed

+34
-3
lines changed

.travis.yml

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,26 @@ php:
1717
- 7.1
1818
- 7.2
1919
- 7.3
20+
- 7.4
2021

2122
matrix:
2223
exclude:
24+
- php: 7.3
25+
env: MOODLE_BRANCH=MOODLE_310_STABLE DB=mysqli
26+
- php: 7.3
27+
env: MOODLE_BRANCH=MOODLE_310_STABLE DB=pgsql
28+
- php: 7.2
29+
env: MOODLE_BRANCH=MOODLE_310_STABLE DB=mysqli
30+
- php: 7.2
31+
env: MOODLE_BRANCH=MOODLE_310_STABLE DB=pgsql
32+
- php: 7.1
33+
env: MOODLE_BRANCH=MOODLE_310_STABLE DB=mysqli
34+
- php: 7.1
35+
env: MOODLE_BRANCH=MOODLE_310_STABLE DB=pgsql
36+
- php: 7.4
37+
env: MOODLE_BRANCH=MOODLE_39_STABLE DB=mysqli
38+
- php: 7.4
39+
env: MOODLE_BRANCH=MOODLE_39_STABLE DB=pgsql
2340
- php: 7.2
2441
env: MOODLE_BRANCH=MOODLE_39_STABLE DB=mysqli
2542
- php: 7.2
@@ -28,6 +45,10 @@ matrix:
2845
env: MOODLE_BRANCH=MOODLE_39_STABLE DB=mysqli
2946
- php: 7.1
3047
env: MOODLE_BRANCH=MOODLE_39_STABLE DB=pgsql
48+
- php: 7.4
49+
env: MOODLE_BRANCH=MOODLE_38_STABLE DB=mysqli
50+
- php: 7.4
51+
env: MOODLE_BRANCH=MOODLE_38_STABLE DB=pgsql
3152
- php: 7.3
3253
env: MOODLE_BRANCH=MOODLE_38_STABLE DB=mysqli
3354
- php: 7.3
@@ -36,6 +57,10 @@ matrix:
3657
env: MOODLE_BRANCH=MOODLE_38_STABLE DB=mysqli
3758
- php: 7.1
3859
env: MOODLE_BRANCH=MOODLE_38_STABLE DB=pgsql
60+
- php: 7.4
61+
env: MOODLE_BRANCH=MOODLE_37_STABLE DB=mysqli
62+
- php: 7.4
63+
env: MOODLE_BRANCH=MOODLE_37_STABLE DB=pgsql
3964
- php: 7.3
4065
env: MOODLE_BRANCH=MOODLE_37_STABLE DB=mysqli
4166
- php: 7.3
@@ -49,6 +74,8 @@ env:
4974
global:
5075
- IGNORE_NAMES=mobile_*.mustache
5176
matrix:
77+
- MOODLE_BRANCH=MOODLE_310_STABLE DB=pgsql
78+
- MOODLE_BRANCH=MOODLE_310_STABLE DB=mysqli
5279
- MOODLE_BRANCH=MOODLE_39_STABLE DB=pgsql
5380
- MOODLE_BRANCH=MOODLE_39_STABLE DB=mysqli
5481
- MOODLE_BRANCH=MOODLE_38_STABLE DB=pgsql

CHANGES.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,15 @@
11
Release Notes
22

3-
_NOTE - The 3.9 releases will only work on Moodle 3.7, Moodle 3.8, and Moodle 3.9.
3+
_NOTE - The 3.9 releases will work on Moodle 3.7, Moodle 3.8, Moodle 3.9, and 3.10.
44
The 3.5 releases will work on Moodle 3.7, 3.6, 3.5, 3.4 and 3.3._
55

66
Contributers to this release include The Open University, Joost van der Borg, Tien Nguyen, Luca Bösch, Simon Oulevay
77
and Adrian Perez.
88

9+
##### Version 3.9.1 (Build - 2020111801)
10+
Improvements:
11+
* Updates to deprecated unit test functions for 3.10.
12+
913
##### Version 3.9.0 (Build - 2020062300)
1014
Improvements:
1115

version.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,10 +24,10 @@
2424

2525
defined('MOODLE_INTERNAL') || die();
2626

27-
$plugin->version = 2020062301; // The current module version (Date: YYYYMMDDXX)
27+
$plugin->version = 2020062302; // The current module version (Date: YYYYMMDDXX)
2828
$plugin->requires = 2019052000; // Moodle version (3.7).
2929

3030
$plugin->component = 'mod_questionnaire';
3131

32-
$plugin->release = '3.9.0 (Build - 2020062300)';
32+
$plugin->release = '3.9.1 (Build - 2020111801)';
3333
$plugin->maturity = MATURITY_STABLE;

0 commit comments

Comments
 (0)