From 34724bed1c566af5d18a7925a989e25e3a21d726 Mon Sep 17 00:00:00 2001
From: Kathrin Osswald <kathrin.osswald@uni-ulm.de>
Date: Fri, 18 Sep 2020 09:26:34 +0200
Subject: [PATCH] Prepare compatibility for Moodle 3.9.

---
 .travis.yml | 6 +++---
 CHANGES.md  | 1 +
 README.md   | 2 +-
 version.php | 4 ++--
 4 files changed, 7 insertions(+), 6 deletions(-)

diff --git a/.travis.yml b/.travis.yml
index e6e8a01..9df8faf 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -1,7 +1,7 @@
 language: php
 
 addons:
-  postgresql: "9.4"
+  postgresql: "9.5"
 
 services:
   - mysql
@@ -14,13 +14,13 @@ cache:
     - $HOME/.npm
 
 php:
-  - 7.1
   - 7.2
   - 7.3
+  - 7.4
 
 env:
   global:
-    - MOODLE_BRANCH=MOODLE_38_STABLE
+    - MOODLE_BRANCH=MOODLE_39_STABLE
   matrix:
     - DB=pgsql
     - DB=mysqli
diff --git a/CHANGES.md b/CHANGES.md
index 5307c1d..2aedc1b 100644
--- a/CHANGES.md
+++ b/CHANGES.md
@@ -6,6 +6,7 @@ Changes
 
 ### Unreleased
 
+* 2020-09-18 - Prepare compatibility for Moodle 3.9.
 * 2020-02-26 - Added Behat tests.
 
 ### v3.8-r1
diff --git a/README.md b/README.md
index 38fbf3f..70b9c43 100644
--- a/README.md
+++ b/README.md
@@ -9,7 +9,7 @@ Moodle authentication plugin which provides all functionality of auth_ldap, but
 Requirements
 ------------
 
-This plugin requires Moodle 3.8+
+This plugin requires Moodle 3.9+
 
 
 Motivation for this plugin
diff --git a/version.php b/version.php
index e105454..db5cf3e 100644
--- a/version.php
+++ b/version.php
@@ -27,6 +27,6 @@ defined('MOODLE_INTERNAL') || die();
 $plugin->component = 'auth_ldap_syncplus';
 $plugin->version = 2020021900;
 $plugin->release = 'v3.8-r1';
-$plugin->requires = 2019111800;
+$plugin->requires = 2020061500;
 $plugin->maturity = MATURITY_STABLE;
-$plugin->dependencies = array('auth_ldap' => 2019111800);
+$plugin->dependencies = array('auth_ldap' => 2020061500);
-- 
GitLab