Skip to content

Commit 2189aa5

Browse files
committed
Update to pgrx 0.12.0.alpha.1
1 parent 88be90d commit 2189aa5

File tree

6 files changed

+15
-13
lines changed

6 files changed

+15
-13
lines changed

Cargo.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
[package]
22
name = "pgdd"
3-
version = "0.5.2"
3+
version = "0.5.3-dev.0"
44
edition = "2018"
55
description = "In-database (PostgreSQL) data dictionary providing database introspection via standard SQL query syntax."
66

77
[lib]
8-
crate-type = ["cdylib"]
8+
crate-type = ["cdylib", "lib"]
99

1010
[features]
1111
default = ["pg16"]
@@ -17,12 +17,12 @@ pg16 = ["pgrx/pg16"]
1717
pg_test = []
1818

1919
[dependencies]
20-
pgrx = "=0.10.2"
21-
pgrx-macros = "=0.10.2"
20+
pgrx = "=0.12.0-alpha.1"
21+
pgrx-macros = "=0.12.0-alpha.1"
2222

2323

2424
[dev-dependencies]
25-
pgrx-tests = "=0.10.2"
25+
pgrx-tests = "=0.12.0-alpha.1"
2626

2727

2828
[profile.dev]

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
MIT License
22

3-
Copyright (c) 2018 - 2023 Ryan Lambert
3+
Copyright (c) 2018 - 2024 Ryan Lambert
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

build/build.sh

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Borrowed heavily from https://github.com/zombodb/zombodb/blob/master/build/build.sh
22
#
3-
# Copyright 2018-2023 RustProof Labs
3+
# Copyright 2018-2024 RustProof Labs
44
#
55
# Licensed under the Apache License, Version 2.0 (the "License");
66
# you may not use this file except in compliance with the License.
@@ -21,10 +21,10 @@ 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-
PGRXVERSION=0.10.2
24+
PGRXVERSION=0.12.0-alpha.1
2525

26-
PG_VERS=("pg12" "pg13" "pg14" "pg15" "pg16")
27-
#PG_VERS=("pg16")
26+
#PG_VERS=("pg12" "pg13" "pg14" "pg15" "pg16")
27+
PG_VERS=("pg16")
2828

2929
echo $BASE
3030
echo $VERSION
@@ -36,7 +36,7 @@ mkdir -p ${LOGDIR}
3636
mkdir -p ${ARTIFACTDIR}
3737

3838

39-
for image in `ls docker/ ` ; do
39+
for image in `ls docker/ | grep jammy ` ; do
4040

4141
OS_DIST=$(echo ${image}|cut -f2 -d-)
4242
OS_VER=$(echo ${image}|cut -f3 -d-)

build/package.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Borrowed heavily from https://github.com/zombodb/zombodb/blob/master/build/package.sh
22
#
3-
# Copyright 2021-2023 RustProof Labs
3+
# Copyright 2021-2024 RustProof Labs
44
#
55
# Licensed under the Apache License, Version 2.0 (the "License");
66
# you may not use this file except in compliance with the License.

pgdd.control

Lines changed: 1 addition & 1 deletion
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.5.2'
2+
default_version = '0.5.3-dev.0'
33
module_pathname = '$libdir/pgdd'
44
relocatable = false
55
schema = dd

src/bin/pgrx_embed_pgdd.rs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
// Required for pgrx v0.12.0.alpha.1
2+
::pgrx::pgrx_embed!();

0 commit comments

Comments
 (0)