Skip to content

Commit 8c89ec7

Browse files
authored
Prepare 1.0.0 rc.0 (#236)
1 parent 5e4c37b commit 8c89ec7

File tree

6 files changed

+23
-25
lines changed

6 files changed

+23
-25
lines changed

Cargo.lock

Lines changed: 4 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

plrust-trusted-pgx/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "plrust-trusted-pgx"
3-
version = "0.0.0-do-not-use"
3+
version = "1.0.0-rc.0"
44
authors = ["TCDI <[email protected]>"]
55
edition = "2021"
66
license = "PostgreSQL"

plrust-trusted-pgx/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,5 +5,5 @@
55
of capabilities necessary to compile [`plrust`](https://github.com/tcdi/plrust) user functions along with safe access to
66
various parts of Postgres including some data types, logging, Spi, and triggers.
77

8-
You might be tempted to use this for your own pgx extension development, but you shouldn't. It's intended for use onely
8+
You might be tempted to use this for your own pgx extension development, but you shouldn't. It's intended for use only
99
with plrust.

plrust/Cargo.toml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "plrust"
3-
version = "1.0.0-beta.1"
3+
version = "1.0.0-rc.0"
44
authors = ["TCDI <[email protected]>"]
55
edition = "2021"
66
license = "PostgreSQL Open Source License"
@@ -28,22 +28,22 @@ force_enable_x86_64_darwin_generations = []
2828

2929
[dependencies]
3030
cfg-if = "1" # platform conditional helper
31-
once_cell = "1.17.0" # polyfills a nightly feature
31+
once_cell = "1.17.1" # polyfills a nightly feature
3232
semver = "1.0.16"
3333
home = "0.5.4" # where can we find cargo?
3434

3535
# working with our entry in pg_catalog.pg_proc
3636
base64 = "0.21.0"
3737
flate2 = "1.0.25"
3838
serde = "1.0.152"
39-
serde_json = "1.0.91"
39+
serde_json = "1.0.93"
4040

4141
# pgx core details
4242
pgx = { version = "=0.7.2" }
4343

4444
# language handler support
4545
libloading = "0.7.4"
46-
toml = "0.7.1"
46+
toml = "0.7.2"
4747
tempdir = "0.3.7" # for building crates
4848
tempfile = "3.3.0"
4949

@@ -68,5 +68,5 @@ memfd = "0.6.2" # for anonymously writing/loading user function .so
6868
[dev-dependencies]
6969
pgx-tests = { version = "=0.7.2" }
7070
tempdir = "0.3.7"
71-
once_cell = "1.17.0"
72-
toml = "0.7.1"
71+
once_cell = "1.17.1"
72+
toml = "0.7.2"

plrustc/Cargo.lock

Lines changed: 5 additions & 5 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

plrustc/plrustc/Cargo.toml

Lines changed: 6 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,15 @@
11
[package]
22
name = "plrustc"
3-
version = "0.1.0"
3+
version = "1.0.0-rc.0"
44
edition = "2021"
55
description = "`rustc_driver` wrapper for plrust"
6+
license = "PostgreSQL"
7+
authors = ["TCDI <[email protected]>"]
8+
homepage = "https://github.com/tcdi/plrust/"
9+
repository = "https://github.com/tcdi/plrust/"
610

711
[dependencies]
8-
once_cell = "1.17.0"
9-
# rustc_tools_util = "0.3.0"
10-
# log = "0.4"
11-
# env-logger = "0.10"
12-
13-
# [build-dependencies]
14-
# rustc_tools_util = "0.3.0"
12+
once_cell = "1.17.1"
1513

1614
[dev-dependencies]
1715
compiletest_rs = "0.9"

0 commit comments

Comments
 (0)