Skip to content

Commit

Permalink
Update META.json
Browse files Browse the repository at this point in the history
  • Loading branch information
adept committed Oct 11, 2024
1 parent 7d14175 commit f056a96
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 8 deletions.
14 changes: 7 additions & 7 deletions META.json
Original file line number Diff line number Diff line change
@@ -1,32 +1,32 @@
{
"name": "pg_relusage",
"abstract": "An extension to log all the queries that reference a particular column",
"version": "__VERSION__",
"abstract": "An extension to log all the relations used in SQL statements and functions",
"version": "0.0.1",
"maintainer": "Dmitry Astapov <dastapov@gmail.com>",
"license": "postgresql",
"release_status": "stable",
"provides": {
"pg_relusage": {
"abstract": "An extension to log all the queries that reference a particular column",
"abstract": "An extension to log all the relations used in SQL statements and functions",
"file": "pg_relusage.c",
"docfile": "README.md",
"version": "__VERSION__"
"version": "0.0.1"
}
},
"resources": {
"bugtracker": {
"web": "https://github.com/adept/pg_relusage/issues"
},
"repository": {
"url": "https://github.com/dastapov/pg_relusage.git",
"web": "https://github.com/dastapov/pg_relusage",
"url": "https://github.com/adept/pg_relusage.git",
"web": "https://github.com/adept/pg_relusage",
"type": "git"
}
},
"prereqs": {
"runtime": {
"requires": {
"PostgreSQL": "9.4.0"
"PostgreSQL": ">= 9.5.0"
}
}
},
Expand Down
1 change: 0 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@ release-zip: all
git archive --format zip --prefix=pg_relusage-$(EXTVERSION)/ --output ./pg_relusage-$(EXTVERSION).zip HEAD
unzip ./pg_relusage-$(EXTVERSION).zip
rm ./pg_relusage-$(EXTVERSION).zip
sed -i -e "s/__VERSION__/$(EXTVERSION)/g" ./pg_relusage-$(EXTVERSION)/META.json
zip -r ./pg_relusage-$(EXTVERSION).zip ./pg_relusage-$(EXTVERSION)/
rm ./pg_relusage-$(EXTVERSION) -rf

Expand Down

0 comments on commit f056a96

Please sign in to comment.