From be27ee6c5021cf7cff021d1aa5ef490235b756fd Mon Sep 17 00:00:00 2001 From: Raminder Singh Date: Wed, 11 Feb 2026 11:03:05 +0530 Subject: [PATCH 1/2] chore: bump version to 0.3.4 --- META.json | 86 +++++++++++++++++++++++++++---------------------------- 1 file changed, 43 insertions(+), 43 deletions(-) diff --git a/META.json b/META.json index 0202a6c..346e954 100644 --- a/META.json +++ b/META.json @@ -1,46 +1,46 @@ { - "name": "pg_jsonschema", - "abstract": "PostgreSQL extension providing JSON Schema validation", - "description": "pg_jsonschema is a PostgreSQL extension adding support for JSON schema validation on json and jsonb data types.", - "version": "0.3.1", - "maintainer": [ - "Oliver Rice " - ], - "license": "apache_2_0", - "provides": { - "pg_jsonschema": { - "abstract": "PostgreSQL extension providing JSON Schema validation", - "file": "pg_jsonschema.control", - "docfile": "README.md", - "version": "0.3.1" + "name": "pg_jsonschema", + "abstract": "PostgreSQL extension providing JSON Schema validation", + "description": "pg_jsonschema is a PostgreSQL extension adding support for JSON schema validation on json and jsonb data types.", + "version": "0.3.4", + "maintainer": [ + "Oliver Rice " + ], + "license": "apache_2_0", + "provides": { + "pg_jsonschema": { + "abstract": "PostgreSQL extension providing JSON Schema validation", + "file": "pg_jsonschema.control", + "docfile": "README.md", + "version": "0.3.4" + } + }, + "prereqs": { + "runtime": { + "requires": { + "PostgreSQL": "12.0.0" } - }, - "prereqs": { - "runtime": { - "requires": { - "PostgreSQL": "12.0.0" - } - } - }, - "resources": { - "bugtracker": { - "web": "https://github.com/supabase/pg_jsonschema/issues/" - }, - "repository": { - "url": "git://github.com/supabase/pg_jsonschema.git", - "web": "https://github.com/supabase/pg_jsonschema/", - "type": "git" - } - }, - "generated_by": "David E. Wheeler", - "meta-spec": { - "version": "1.0.0", - "url": "https://pgxn.org/meta/spec.txt" - }, - "tags": [ - "jsonschema", - "validation", - "json", - "jsonb" - ] + } + }, + "resources": { + "bugtracker": { + "web": "https://github.com/supabase/pg_jsonschema/issues/" + }, + "repository": { + "url": "git://github.com/supabase/pg_jsonschema.git", + "web": "https://github.com/supabase/pg_jsonschema/", + "type": "git" + } + }, + "generated_by": "David E. Wheeler", + "meta-spec": { + "version": "1.0.0", + "url": "https://pgxn.org/meta/spec.txt" + }, + "tags": [ + "jsonschema", + "validation", + "json", + "jsonb" + ] } From 07414eee62b01d1e3ff0bb43c0b4fde49cfc7c09 Mon Sep 17 00:00:00 2001 From: Raminder Singh Date: Wed, 11 Feb 2026 16:38:32 +0530 Subject: [PATCH 2/2] chore: bump version to 0.3.4 --- Cargo.lock | 2 +- Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index bdf981c..713e77f 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1097,7 +1097,7 @@ dependencies = [ [[package]] name = "pg_jsonschema" -version = "0.3.3" +version = "0.3.4" dependencies = [ "jsonschema", "pgrx", diff --git a/Cargo.toml b/Cargo.toml index 686ff34..3e65ac5 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "pg_jsonschema" -version = "0.3.3" +version = "0.3.4" edition = "2024" [lib]