From 9a3539483dcbdf6a114e12255135544f25c1f888 Mon Sep 17 00:00:00 2001 From: Nicolas Martignoni Date: Wed, 21 Mar 2018 09:36:07 +0100 Subject: [PATCH] Version numbers changed for upcoming version 1.10. --- CHANGELOG.md | 2 +- version.php | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 105ed70..d46092e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,7 +3,7 @@ All notable changes to this project will be documented in this file. This project adheres to [Semantic Versioning](http://semver.org/) and follow principles of [keep a changelog](http://keepachangelog.com). -## Unreleased (upcoming version 1.10) +## Version 1.10, 2018-03-21 ### Added - Moodle privacy API implementation complete (issue #34). - Arbitrary characters, included spaces, are now allowed in SSID (issues #31 and #38). diff --git a/version.php b/version.php index 003ffbd..1fc45a0 100644 --- a/version.php +++ b/version.php @@ -26,8 +26,8 @@ $plugin = new stdClass(); -$plugin->version = 2018031900; -$plugin->release = '1.10-beta'; +$plugin->version = 2018032100; +$plugin->release = '1.10'; $plugin->requires = 2017051500; -$plugin->maturity = MATURITY_BETA; +$plugin->maturity = MATURITY_STABLE; $plugin->component = 'tool_moodlebox';