From 5ffd0a6a851c28284db8a56abb9049586a648839 Mon Sep 17 00:00:00 2001 From: Adrian Greeve Date: Mon, 23 Oct 2023 10:52:20 +0800 Subject: [PATCH] Change log file added and version bump --- CHANGELOG.md | 13 +++++++++++++ version.php | 4 ++-- 2 files changed, 15 insertions(+), 2 deletions(-) create mode 100644 CHANGELOG.md diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..30a2b38 --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,13 @@ +Tiny Stash +=========== + +Version 1.0.1 (23rd October 2023) +--------------------------------- + +* Added privacy provider information. This plugin is a null provider as it does not store any user information. + + +Version 1.0.0 (20th October 2023) +--------------------------------- + +* Initial release of tiny stash. diff --git a/version.php b/version.php index d62312c..e9b4e74 100644 --- a/version.php +++ b/version.php @@ -24,8 +24,8 @@ defined('MOODLE_INTERNAL') || die(); -$plugin->version = 2023102000; +$plugin->version = 2023102300; $plugin->requires = 2022112805; $plugin->component = 'tiny_stash'; -$plugin->release = '1.0.0'; +$plugin->release = '1.0.1'; $plugin->dependencies = ['block_stash' => 2022042102, 'filter_shortcodes' => 2022121200];