Skip to content

Commit

Permalink
Bump version number for releasing a new version (3.8.0)
Browse files Browse the repository at this point in the history
  • Loading branch information
sarjona committed Dec 20, 2019
1 parent fc8c56a commit ee44796
Show file tree
Hide file tree
Showing 2 changed files with 56 additions and 5 deletions.
55 changes: 53 additions & 2 deletions README.txt
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,57 @@ By Tim Hunt

VERSIONS HISTORY

3.7.0 (2019060300) for Moodle 3.0, 3.1, 3.2, 3.3, 3.4, 3.5, 3.6, 3.7
3.8.0 (2019122000) for Moodle 3.4, 3.5, 3.6, 3.7, 3.8
Release date: Friday, 20 Dec 2019
----------------------------------------------------------------------
- Order the list of users in users filter by fullname considering language - #130
- Other fixes and improvements:
* Fix template array error - #132
* Fix DB mismatch between install.xml and upgrade.php - #123
* Fix LIMIT error for MSSQL - CONTRIB-7891
* Remove "_" from the table header titles - #137
* Review supported Moodle versions, because the core_userlist_provider interface is only supported from 3.4 onwards - #125


Thanks Mike McDougal (mcdoogs), Tuan Ngoc Nguyen (tuanngocnguyen), Mike Henry (mhenry79mnet), safatshahinsd, kristian-94 and all the contributors who have sent several fixes and improvements.
And special thanks also to Carlos, Moodle HQ and Juan for letting Sara work on this again during the project week.


3.3.0 (2019121900) for Moodle 3.0, 3.1, 3.2, 3.3
Release date: Friday, 20 Dec 2019
----------------------------------------------------------------------
- Order the list of users in users filter by fullname considering language - #130
- Add a new calculation type: percentage
- Allow userfields to be used more than once in the permissions
- Move JS to AMD modules
- Upgrade some 3rd party JS libraries
- Fix import from XML
- Review the year filter to take min and max years from the calendar factory
- Other fixes and improvements:
* Fix template array error - #132
* Fix DB mismatch between install.xml and upgrade.php - #123
* Fix LIMIT error for MSSQL - CONTRIB-7891
* Remove "_" from the table header titles - #137
* Review supported Moodle versions, because the core_userlist_provider interface is only supported from 3.4 onwards - #125
* Fix error when using templates
* Fix error when using the Start/End filter
* Fix legacy_polyfill error when running unit tests
* Display custom title for the block
* Replace deprecated methods (htmleditor, pix_url and coursecat)
* Remove CSS files not found error in JS console
* Show breadcrumbs for users without manage report capability
* Fix DB query function call for the enrolled students filter
* Raise the memory limit when exporting
* Clean some request parameters before using them
* Fix error with user field search box filter
* Improve compatibility with PostgreSQL when importing


Thanks Mike McDougal (mcdoogs), Tuan Ngoc Nguyen (tuanngocnguyen), Mike Henry (mhenry79mnet), safatshahinsd, kristian-94, David (davidpesce), Dimitrii (dmitriim), Alex (agrowe), Donald (emyb2), sopnep15, Danniel (dannielarriola) and all the contributors who have sent several fixes and improvements.
And special thanks also to Carlos, Sander, Moodle HQ and Juan for letting Sara work on this again during the project week.


3.7.0 (2019060300) for Moodle 3.4, 3.5, 3.6, 3.7
Release date: Monday, 3 Jun 2019
----------------------------------------------------------------------
- Add a new calculation type: percentage
Expand All @@ -43,7 +93,7 @@ Thanks David (davidpesce), Dimitrii (dmitriim) and all the contributors who have
And special thanks also to Sander, Moodle HQ and Juan for letting Sara work on this again during the project week.


3.6.0 (2019021500) for Moodle 3.0, 3.1, 3.2, 3.3, 3.4, 3.5, 3.6
3.6.0 (2019021500) for Moodle 3.4, 3.5, 3.6
Release date: Friday, 15 Feb 2019
----------------------------------------------------------------------
- Implement Privacy API
Expand All @@ -69,6 +119,7 @@ fixes and improvements.
And special thanks also to Sander, Moodle HQ and Juan for letting Sara work on this during the project week.



3.1.1 (2016020103) for Moodle 3.0, 3.1
Release date: Monday, 10 Oct 2016
----------------------------------------------------------------------
Expand Down
6 changes: 3 additions & 3 deletions version.php
Original file line number Diff line number Diff line change
Expand Up @@ -29,10 +29,10 @@

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

$plugin->version = 2019062001; // Plugin version.
$plugin->requires = 2015111600; // require Moodle version (3.0).
$plugin->version = 2019122000; // Plugin version.
$plugin->requires = 2017111300; // require Moodle version (3.4).
$plugin->maturity = MATURITY_STABLE;
$plugin->release = '3.7.0';
$plugin->release = '3.8.0';
$plugin->component = 'block_configurable_reports'; // Full name of the plugin (used for diagnostics)
$plugin->cron = 86400; // = Once in 24h, Set min time between cron executions.
// Should probably be at night to off load CPU load.

0 comments on commit ee44796

Please sign in to comment.