From 14e6509a0b92b962111647b48aa3fed9e909c060 Mon Sep 17 00:00:00 2001 From: Tomas Vondra Date: Fri, 5 Oct 2012 09:50:39 +0200 Subject: [PATCH] Version bumped to 1.0.1 for release on PGXN. --- META.json | 6 +++--- Makefile | 2 +- query_recorder.control | 4 ++-- ...{query_recorder--1.0.0.sql => query_recorder--1.0.1.sql} | 0 4 files changed, 6 insertions(+), 6 deletions(-) rename sql/{query_recorder--1.0.0.sql => query_recorder--1.0.1.sql} (100%) diff --git a/META.json b/META.json index 5058ec7..c037a71 100644 --- a/META.json +++ b/META.json @@ -2,7 +2,7 @@ "name": "query_recorder", "abstract": "Records all executed SQL queries into a file, so that you may replay them later.", "description": "This extension allows you to record all executed queries into a file (or a set of files), so that you may analyze or replay them later.", - "version": "1.0.0", + "version": "1.0.1", "maintainer": "Tomas Vondra ", "license": "bsd", "prereqs": { @@ -14,8 +14,8 @@ }, "provides": { "query_recorder": { - "file": "query_recorder--1.0.0.sql", - "version": "1.0.0" + "file": "query_recorder--1.0.1.sql", + "version": "1.0.1" } }, "resources": { diff --git a/Makefile b/Makefile index 2e9af38..770d599 100644 --- a/Makefile +++ b/Makefile @@ -2,7 +2,7 @@ MODULE_big = query_recorder OBJS = src/record.o EXTENSION = query_recorder -DATA = sql/query_recorder--1.0.0.sql +DATA = sql/query_recorder--1.0.1.sql MODULES = query_recorder CFLAGS=`pg_config --includedir-server` diff --git a/query_recorder.control b/query_recorder.control index ef34a21..488e99a 100644 --- a/query_recorder.control +++ b/query_recorder.control @@ -1,6 +1,6 @@ # query_recorder comment = 'Allows recording of SQL queries to a separate file.' -default_version = '1.0.0' +default_version = '1.0.1' relocatable = true -module_pathname = '$libdir/query_recorder' \ No newline at end of file +module_pathname = '$libdir/query_recorder' diff --git a/sql/query_recorder--1.0.0.sql b/sql/query_recorder--1.0.1.sql similarity index 100% rename from sql/query_recorder--1.0.0.sql rename to sql/query_recorder--1.0.1.sql