Skip to content

Commit dffbf3b

Browse files
committed
Bump pgx versions to production release.
1 parent a162e31 commit dffbf3b

File tree

3 files changed

+7
-9
lines changed

3 files changed

+7
-9
lines changed

Cargo.toml

+5-7
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,11 @@
11
[package]
22
name = "pgdd"
3-
version = "0.4.0-rc4"
3+
version = "0.4.0"
44
edition = "2018"
55
description = "In-database (PostgreSQL) data dictionary providing database introspection via standard SQL query syntax."
66

77
[lib]
8-
# rlib added to build against repo instead of crate (I think)
98
crate-type = ["cdylib", "rlib"]
10-
#crate-type = ["cdylib"]
119

1210
[features]
1311
default = ["pg14"]
@@ -22,15 +20,15 @@ pg_test = []
2220

2321
#pgx = { git = "https://github.com/zombodb/pgx", branch = "develop" }
2422
#pgx-macros = { git = "https://github.com/zombodb/pgx", branch = "develop" }
25-
pgx = "0.2.0-beta.4"
26-
pgx-macros = "0.2.0-beta.4"
23+
pgx = "0.2.5"
24+
pgx-macros = "0.2.5"
2725

2826
#pgx-utils = { git = "https://github.com/zombodb/pgx", branch = "develop" }
29-
pgx-utils = "0.2.0-beta.4"
27+
pgx-utils = "0.2.5"
3028

3129
[dev-dependencies]
3230
#pgx-tests = { git = "https://github.com/zombodb/pgx", branch = "develop" }
33-
pgx-tests = "0.2.0-beta.4"
31+
pgx-tests = "0.2.5"
3432

3533

3634
[profile.dev]

build/build.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ BASE=$(dirname `pwd`)
2121
VERSION=$(cat $BASE/pgdd.control | grep default_version | cut -f2 -d\')
2222
LOGDIR=${BASE}/target/logs
2323
ARTIFACTDIR=${BASE}/target/artifacts
24-
PGXVERSION=0.2.0-beta.4
24+
PGXVERSION=0.2.5
2525

2626
PG_VERS=("pg10" "pg11" "pg12" "pg13" "pg14")
2727
#PG_VERS=("pg14")

pgdd.control

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
comment = 'An in-database data dictionary providing database introspection via standard SQL query syntax. Developed using pgx (https://github.com/zombodb/pgx).'
2-
default_version = '0.4.0-rc4'
2+
default_version = '0.4.0'
33
module_pathname = '$libdir/pgdd'
44
relocatable = false
55
schema = dd

0 commit comments

Comments
 (0)