Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/HuasoFoundries/phpPgAdmin6.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAmenadiel <amenadiel@gmail.com>2020-01-07 21:47:25 +0300
committerAmenadiel <amenadiel@gmail.com>2020-01-07 21:47:25 +0300
commit1575f35d6aa2fe1f45117a66be794ba9cefc5b37 (patch)
tree73348493f39c09332abd5a1dcb2fcd8a3e474387
parent5e285fb4eeff78a614a293eb3b513104cd63d44c (diff)
Creating Tag v6.0.0-RC2 at 2020-01-07 - support for PG12v6.0.0-RC2
-rw-r--r--Makefile12
-rw-r--r--src/database/Postgres12.php19
-rw-r--r--src/database/Postgres13.php20
3 files changed, 44 insertions, 7 deletions
diff --git a/Makefile b/Makefile
index a7e80247..ab12fa7b 100644
--- a/Makefile
+++ b/Makefile
@@ -48,13 +48,11 @@ tag_and_push:
git checkout master ;\
git merge $(CURRENT_BRANCH) ;\
fi
-
- git commit -a -m "Creating Tag v$(v) at $(DATENOW) - $(m)"
- #git tag v$(v)
- #git push
- #git push --tags
-
- git checkout $(CURRENT_BRANCH)
+ @git commit -a -m "Creating Tag v$(v) at $(DATENOW) - $(m)" ;\
+ git tag v$(v) ;\
+ git push ;\
+ git push --tags ;\
+ git checkout $(CURRENT_BRANCH)
diff --git a/src/database/Postgres12.php b/src/database/Postgres12.php
new file mode 100644
index 00000000..9329caf3
--- /dev/null
+++ b/src/database/Postgres12.php
@@ -0,0 +1,19 @@
+<?php
+
+/**
+ * PHPPgAdmin v6.0.0-RC2
+ */
+
+namespace PHPPgAdmin\Database;
+
+/**
+ * @file
+ * PostgreSQL 12.x support
+ */
+/**
+ * Class to add support for Postgres12.
+ */
+class Postgres12 extends Postgres11
+{
+ public $major_version = 12;
+}
diff --git a/src/database/Postgres13.php b/src/database/Postgres13.php
new file mode 100644
index 00000000..42d42212
--- /dev/null
+++ b/src/database/Postgres13.php
@@ -0,0 +1,20 @@
+<?php
+
+/**
+ * PHPPgAdmin v6.0.0-RC2
+ */
+
+namespace PHPPgAdmin\Database;
+
+/**
+ * @file
+ * PostgreSQL 13.x support
+ */
+/**
+ * Class to add support for Postgres13.
+ * (Which doesn't exist yet, but it's better than rejecting connections).
+ */
+class Postgres13 extends Postgres12
+{
+ public $major_version = 13;
+}