From f3952c3c055f8e86a235dcc17d04f90de6758d50 Mon Sep 17 00:00:00 2001 From: Perik Rigoudy <117086694+PerikAdjust@users.noreply.github.com> Date: Wed, 27 Sep 2023 11:17:25 +0200 Subject: [PATCH 1/4] Create META.json --- META.json | 37 +++++++++++++++++++++++++++++++++++++ 1 file changed, 37 insertions(+) create mode 100644 META.json diff --git a/META.json b/META.json new file mode 100644 index 0000000..a6538bc --- /dev/null +++ b/META.json @@ -0,0 +1,37 @@ +{ + "name": "wltree", + "abstract": "This is adevens patched version of Postgres ltree module", + "version": "2.0", + "license": { + "PostgreSQL": "http://www.postgresql.org/about/licence" + }, + "provides": { + "wltree": { + "file": "sql/pg_lock_pool.sql", + "version": "0.2.0", + "abstract": "This is adevens patched version of Postgres ltree module" + } + }, + "meta-spec": { + "version": "2.0", + "url": "http://pgxn.org/meta/spec.txt" + }, + "description": "This is adevens patched version of Postgres ltree module", + "prereqs": { + "runtime": { + "requires": { + "PostgreSQL": "9.3.0" + } + } + }, + "resources": { + "bugtracker": { + "web": "http://github.com/adjust/wltree/issues" + }, + "repository": { + "url": "git://github.com/adjust/wltree.git", + "web": "http://github.com/adjust/wltree", + "type": "git" + } + } +} From 87798ae7d95e0662bc317cb4b8413af97e872940 Mon Sep 17 00:00:00 2001 From: Perik Rigoudy <117086694+PerikAdjust@users.noreply.github.com> Date: Thu, 28 Sep 2023 12:16:02 +0200 Subject: [PATCH 2/4] Update META.json --- META.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/META.json b/META.json index a6538bc..c71fb15 100644 --- a/META.json +++ b/META.json @@ -20,7 +20,7 @@ "prereqs": { "runtime": { "requires": { - "PostgreSQL": "9.3.0" + "PostgreSQL": "10.0" } } }, From 230d1ec09b162385ee0d5f53381ec9da6905f081 Mon Sep 17 00:00:00 2001 From: Perik Rigoudy <117086694+PerikAdjust@users.noreply.github.com> Date: Tue, 24 Oct 2023 15:32:42 +0200 Subject: [PATCH 3/4] Update META.json Change version of meta-spec, this was a mistake it's 1.0.0 and add "adjustgmbh" as author to publish this extension on PGXN. Like https://github.com/adjust/pg-mvtbl/pull/8#issuecomment-1776913035 This extension is new and has not yet been shared on PGXN. --- META.json | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/META.json b/META.json index c71fb15..eb34126 100644 --- a/META.json +++ b/META.json @@ -1,7 +1,8 @@ { "name": "wltree", + "author": "adjustgmbh", "abstract": "This is adevens patched version of Postgres ltree module", - "version": "2.0", + "version": "0.2.0", "license": { "PostgreSQL": "http://www.postgresql.org/about/licence" }, @@ -13,7 +14,7 @@ } }, "meta-spec": { - "version": "2.0", + "version": "1.0.0", "url": "http://pgxn.org/meta/spec.txt" }, "description": "This is adevens patched version of Postgres ltree module", From 284b484293db03b0aa9d68e289a86c88cba03581 Mon Sep 17 00:00:00 2001 From: Perik Rigoudy <117086694+PerikAdjust@users.noreply.github.com> Date: Tue, 21 Nov 2023 12:17:15 +0100 Subject: [PATCH 4/4] Update META.json META.json update for standardization and modified to pass PGXN meta specification validation --- META.json | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/META.json b/META.json index eb34126..e35d00c 100644 --- a/META.json +++ b/META.json @@ -2,14 +2,17 @@ "name": "wltree", "author": "adjustgmbh", "abstract": "This is adevens patched version of Postgres ltree module", - "version": "0.2.0", + "version": "2.0", + "maintainer" : [ + "adjustgmbh" + ], "license": { "PostgreSQL": "http://www.postgresql.org/about/licence" }, "provides": { "wltree": { "file": "sql/pg_lock_pool.sql", - "version": "0.2.0", + "version": "2.0", "abstract": "This is adevens patched version of Postgres ltree module" } }, @@ -21,7 +24,7 @@ "prereqs": { "runtime": { "requires": { - "PostgreSQL": "10.0" + "PostgreSQL": "10.0.0" } } },