Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,12 @@ control.mk
.deps/

# built targets
# Note: Version-specific files (sql/*--*.sql) are now tracked in git and should be committed
# Note: Version-specific files (sql/*--*.sql) are tracked in git and should be
# committed once a version is really released (immutable from then on) --
# except sql/extension_drop--stable.sql, which is just a mechanical copy of
# sql/extension_drop.sql for as long as default_version is the stable
# pseudo-version, so committing it would just duplicate that file.
sql/extension_drop--stable.sql

# Test artifacts
results/
Expand Down
4 changes: 2 additions & 2 deletions HISTORY.asc
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
1.0.0
-----
STABLE
------
== Remove redundant client_min_messages handling from install script
`CREATE EXTENSION` already raises `client_min_messages` to `WARNING` for
the install script (only-raising, so a stricter caller is respected) and
Expand Down
4 changes: 2 additions & 2 deletions META.in.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
"name": "extension_drop",

"X_comment": "REQUIRED. Version of the distribution. http://pgxn.org/spec/#version",
"version": "1.0.0",
"version": "stable",

"X_comment": "REQUIRED. Short description of distribution.",
"abstract": "Run custom commands when an extension is dropped.",
Expand All @@ -41,7 +41,7 @@
"file": "sql/extension_drop.sql",

"X_comment": "REQUIRED. Version the extension is at.",
"version": "1.0.0",
"version": "stable",

"X_comment": "Optional: \"abstract\": Description of the extension.",
"abstract": "Run custom commands when an extension is dropped.",
Expand Down
4 changes: 2 additions & 2 deletions META.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
"name": "extension_drop",

"X_comment": "REQUIRED. Version of the distribution. http://pgxn.org/spec/#version",
"version": "1.0.0",
"version": "stable",

"X_comment": "REQUIRED. Short description of distribution.",
"abstract": "Run custom commands when an extension is dropped.",
Expand All @@ -41,7 +41,7 @@
"file": "sql/extension_drop.sql",

"X_comment": "REQUIRED. Version the extension is at.",
"version": "1.0.0",
"version": "stable",

"X_comment": "Optional: \"abstract\": Description of the extension.",
"abstract": "Run custom commands when an extension is dropped.",
Expand Down
2 changes: 1 addition & 1 deletion extension_drop.control
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
comment = 'Allows specifying commands to run when dropping an extension.'
default_version = '1.0.0'
default_version = 'stable'
relocatable = false
requires = 'cat_tools'
319 changes: 0 additions & 319 deletions sql/extension_drop--1.0.0.sql

This file was deleted.