File tree Expand file tree Collapse file tree 6 files changed +15
-13
lines changed
Expand file tree Collapse file tree 6 files changed +15
-13
lines changed Original file line number Diff line number Diff line change 11[package ]
22name = " pgdd"
3- version = " 0.5.2 "
3+ version = " 0.5.3-dev.0 "
44edition = " 2018"
55description = " 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 ]
1111default = [" pg16" ]
@@ -17,12 +17,12 @@ pg16 = ["pgrx/pg16"]
1717pg_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 ]
Original file line number Diff line number Diff line change 11MIT License
22
3- Copyright (c) 2018 - 2023 Ryan Lambert
3+ Copyright (c) 2018 - 2024 Ryan Lambert
44
55Permission is hereby granted, free of charge, to any person obtaining a copy
66of this software and associated documentation files (the "Software"), to deal
Original file line number Diff line number Diff line change 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`)
2121VERSION=$( cat $BASE /pgdd.control | grep default_version | cut -f2 -d\' )
2222LOGDIR=${BASE} /target/logs
2323ARTIFACTDIR=${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
2929echo $BASE
3030echo $VERSION
@@ -36,7 +36,7 @@ mkdir -p ${LOGDIR}
3636mkdir -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-)
Original file line number Diff line number Diff line change 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.
Original file line number Diff line number Diff line change 11comment = '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 '
33module_pathname = '$libdir/pgdd'
44relocatable = false
55schema = dd
Original file line number Diff line number Diff line change 1+ // Required for pgrx v0.12.0.alpha.1
2+ :: pgrx:: pgrx_embed!( ) ;
You can’t perform that action at this time.
0 commit comments