Skip to content

Commit

Permalink
Increment to v0.40.0
Browse files Browse the repository at this point in the history
  • Loading branch information
theory committed Jul 20, 2024
1 parent 02af21f commit 99dd97c
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 8 deletions.
2 changes: 1 addition & 1 deletion Changes
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Revision history for PostgreSQL extension semver.

0.32.2
0.40.0
- Updated the installation configuration to install the SQL and
documentation files into `semver` subdirectories.
- Changed the tests to use `CREATE EXTENSION` instead of loading the
Expand Down
4 changes: 2 additions & 2 deletions META.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "semver",
"abstract": "A semantic version data type",
"description": "A Postgres data type for the Semantic Version format with support for btree and hash indexing.",
"version": "0.32.1",
"version": "0.40.0",
"maintainer": [
"David E. Wheeler <[email protected]>",
"Sam Vilain <[email protected]>",
Expand All @@ -15,7 +15,7 @@
"abstract": "A semantic version data type",
"file": "sql/semver.sql",
"docfile": "doc/semver.mmd",
"version": "0.32.1"
"version": "0.40.0"
}
},
"prereqs": {
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
semver 0.32.1
semver 0.40.0
=============

[![PGXN version](https://badge.fury.io/pg/semver.svg)](https://badge.fury.io/pg/semver)
Expand Down
6 changes: 3 additions & 3 deletions doc/semver.mmd
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
semver 0.32.1
semver 0.40.0
=============

Synopsis
Expand Down Expand Up @@ -69,10 +69,10 @@ a data type and comparison operators, are:
`1.0.0-alpha < 1.0.0-alpha.1 < 1.0.0-alpha.beta < 1.0.0-beta < 1.0.0-beta.2 <
1.0.0-beta.11 < 1.0.0-rc.1 < 1.0.0`.

🚨 v0.30.0 Upgrade Compatibility Warning 🚨
🚨 v0.40.0 Upgrade Compatibility Warning 🚨
-------------------------------------------

Prior to v0.30.0, the semver extension incorrectly allowed some invalid
Prior to v0.40.0, the semver extension incorrectly allowed some invalid
prerelease and build metadata values. Details below, but *BEFORE YOU UPGRADE*
from an earlier version, we strongly recommend that you check for and repair any
invalid semvers. You can find them using the official
Expand Down
2 changes: 1 addition & 1 deletion semver.control
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# semver extension
comment = 'Semantic version data type'
default_version = '0.32.1'
default_version = '0.40.0'

directory = 'semver'
module_pathname = '$libdir/semver'
Expand Down
1 change: 1 addition & 0 deletions sql/semver--0.32.0--0.40.0.sql
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
-- C source code changes only; No SQL changes.

0 comments on commit 99dd97c

Please sign in to comment.