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:
-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;
+}