1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125
|
semver 0.41.0
=============
[](https://badge.fury.io/pg/semver)
[](https://github.com/theory/pg-semver/actions)
This library contains a single PostgreSQL extension, a data type called
"semver". It's an implementation of the version number format specified by the
[Semantic Versioning 2.0.0 Specification](https://semver.org/spec/v2.0.0.html).
Installation
------------
To build semver:
```sh
make
make install
make installcheck
```
If you encounter an error such as:
```
"Makefile", line 8: Need an operator
```
You need to use GNU make, which may well be installed on your system as
`gmake`:
```sh
gmake
gmake install
gmake installcheck
```
If you encounter an error such as:
```
make: pg_config: Command not found
```
Be sure that you have `pg_config` installed and in your path. If you used a
package management system such as RPM to install PostgreSQL, be sure that the
`-devel` package is also installed. If necessary tell the build process where
to find it:
```sh
env PG_CONFIG=/path/to/pg_config make && make install && make installcheck
```
If you encounter an error such as:
```
ERROR: must be owner of database regression
```
You need to run the test suite using a super user, such as the default
"postgres" super user:
```sh
make installcheck PGUSER=postgres
```
To install the extension in a custom prefix on PostgreSQL 18 or later, pass
the `prefix` argument to `install` (but no other `make` targets):
```sh
make install prefix=/usr/local/extras
```
Then ensure that the prefix is included in the following [`postgresql.conf`
parameters]:
```ini
extension_control_path = '/usr/local/extras/postgresql/share:$system'
dynamic_library_path = '/usr/local/extras/postgresql/lib:$libdir'
```
Once semver is installed, you can add it to a database by connecting to a
database as a super user and running:
```sql
CREATE EXTENSION semver;
```
If you've upgraded your cluster and had semver installed but not as a packaged
extension, you can upgrade it with:
```sql
CREATE EXTENSION semver FROM unpackaged;
```
Dependencies
------------
The `semver` data type has no dependencies other than PostgreSQL and,
for testing, PL/pgSQL.
Copyright and License
---------------------
Copyright (c) 2010-2025 The pg-semver Maintainers: David E. Wheeler, Sam
Vilain, Tom Davis, and Xavier Caron.
This module is free software; you can redistribute it and/or modify it under
the [PostgreSQL License](https://www.opensource.org/licenses/postgresql).
Permission to use, copy, modify, and distribute this software and its
documentation for any purpose, without fee, and without a written agreement is
hereby granted, provided that the above copyright notice and this paragraph
and the following two paragraphs appear in all copies.
In no event shall The pg-semver Maintainers be liable to any party for direct,
indirect, special, incidental, or consequential damages, including lost
profits, arising out of the use of this software and its documentation, even
if The pg-semver Maintainers have been advised of the possibility of such
damage.
The pg-semver Maintainers specifically disclaim any warranties, including, but
not limited to, the implied warranties of merchantability and fitness for a
particular purpose. The software provided hereunder is on an "as is" basis,
and The pg-semver Maintainers no obligations to provide maintenance, support,
updates, enhancements, or modifications.
[`postgresql.conf` parameters]: https://www.postgresql.org/docs/devel/runtime-config-client.html#RUNTIME-CONFIG-CLIENT-OTHER
|