Skip to content
Closed
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
10 changes: 8 additions & 2 deletions HISTORY.asc
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
1.0.0
-----
STABLE
------
== Rename default_version from 1.0.0 to stable
The previous `1.0.0` label was aspirational -- it was never tagged or
published to PGXN, despite `default_version` and this file naming it as a
real released version. Renamed to the `stable` pseudo-version (see
RELEASE.md) to stop implying a release that never happened.

== 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
8 changes: 6 additions & 2 deletions META.in.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,11 @@
"name": "extension_drop",

"X_comment": "REQUIRED. Version of the distribution. http://pgxn.org/spec/#version",
"version": "1.0.0",
"X_comment": "This must match the last REAL released version -- 0.1.1 (2017) -- not an",
"X_comment": "aspirational in-progress one. It only advances at actual release time (see",
"X_comment": "RELEASE.md step 2); meanwhile extension_drop.control's default_version and",
"X_comment": "sql/extension_drop--stable.sql track ongoing, not-yet-released work.",
"version": "0.1.1",

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

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

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

"X_comment": "REQUIRED. Version of the distribution. http://pgxn.org/spec/#version",
"version": "1.0.0",
"X_comment": "This must match the last REAL released version -- 0.1.1 (2017) -- not an",
"X_comment": "aspirational in-progress one. It only advances at actual release time (see",
"X_comment": "RELEASE.md step 2); meanwhile extension_drop.control's default_version and",
"X_comment": "sql/extension_drop--stable.sql track ongoing, not-yet-released work.",
"version": "0.1.1",

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

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

"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'
File renamed without changes.
Loading