Skip to content

Commit

Permalink
Update version to 0.7.0-beta.1 (#1011)
Browse files Browse the repository at this point in the history
  • Loading branch information
eeeebbbbrrrr authored Jan 15, 2023
1 parent 8bdb725 commit 90d0fce
Show file tree
Hide file tree
Showing 10 changed files with 66 additions and 66 deletions.
82 changes: 41 additions & 41 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 4 additions & 4 deletions cargo-pgx/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "cargo-pgx"
version = "0.7.0-beta.0"
version = "0.7.0-beta.1"
authors = ["ZomboDB, LLC <[email protected]>"]
license = "MIT"
description = "Cargo subcommand for 'pgx' to make Postgres extension development easy"
Expand All @@ -17,14 +17,14 @@ edition = "2021"
atty = "0.2.14"
cargo_metadata = "0.15.2"
cargo_toml = "0.11.8"
clap = { version = "4.0.32", features = [ "env", "suggestions", "cargo", "derive", "wrap_help" ] }
clap = { version = "4.1.1", features = [ "env", "suggestions", "cargo", "derive", "wrap_help" ] }
clap-cargo = { version = "0.10.0", features = [ "cargo_metadata" ] }
semver = "1.0.16"
owo-colors = { version = "3.5.0", features = [ "supports-colors" ] }
env_proxy = "0.4.1"
num_cpus = "1.15.0"
pgx-pg-config = { path = "../pgx-pg-config", version = "=0.7.0-beta.0" }
pgx-sql-entity-graph = { path = "../pgx-sql-entity-graph", version = "=0.7.0-beta.0" }
pgx-pg-config = { path = "../pgx-pg-config", version = "=0.7.0-beta.1" }
pgx-sql-entity-graph = { path = "../pgx-sql-entity-graph", version = "=0.7.0-beta.1" }
prettyplease = "0.1.23"
proc-macro2 = { version = "1.0.49", features = [ "span-locations" ] }
quote = "1.0.23"
Expand Down
4 changes: 2 additions & 2 deletions cargo-pgx/src/templates/cargo_toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,10 @@ pg15 = ["pgx/pg15", "pgx-tests/pg15" ]
pg_test = []

[dependencies]
pgx = "=0.7.0-beta.0"
pgx = "=0.7.0-beta.1"

[dev-dependencies]
pgx-tests = "=0.7.0-beta.0"
pgx-tests = "=0.7.0-beta.1"

[profile.dev]
panic = "unwind"
Expand Down
4 changes: 2 additions & 2 deletions nix/templates/default/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,10 @@ pg15 = ["pgx/pg15", "pgx-tests/pg15" ]
pg_test = []

[dependencies]
pgx = "=0.7.0-beta.0"
pgx = "=0.7.0-beta.1"

[dev-dependencies]
pgx-tests = "=0.7.0-beta.0"
pgx-tests = "=0.7.0-beta.1"
tempfile = "3.2.0"
once_cell = "1.7.2"

Expand Down
4 changes: 2 additions & 2 deletions pgx-macros/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "pgx-macros"
version = "0.7.0-beta.0"
version = "0.7.0-beta.1"
authors = ["ZomboDB, LLC <[email protected]>"]
license = "MIT"
description = "Proc Macros for 'pgx'"
Expand All @@ -21,7 +21,7 @@ rustc-args = ["--cfg", "docsrs"]
no-schema-generation = ["pgx-sql-entity-graph/no-schema-generation"]

[dependencies]
pgx-sql-entity-graph = { path = "../pgx-sql-entity-graph", version = "=0.7.0-beta.0" }
pgx-sql-entity-graph = { path = "../pgx-sql-entity-graph", version = "=0.7.0-beta.1" }
proc-macro2 = "1.0.49"
quote = "1.0.23"
syn = { version = "1.0.107", features = [ "extra-traits", "full", "fold", "parsing" ] }
Expand Down
2 changes: 1 addition & 1 deletion pgx-pg-config/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "pgx-pg-config"
version = "0.7.0-beta.0"
version = "0.7.0-beta.1"
authors = ["ZomboDB, LLC <[email protected]>"]
license = "MIT"
description = "A Postgres pg_config wrapper for 'pgx'"
Expand Down
8 changes: 4 additions & 4 deletions pgx-pg-sys/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "pgx-pg-sys"
version = "0.7.0-beta.0"
version = "0.7.0-beta.1"
authors = ["ZomboDB, LLC <[email protected]>"]
license = "MIT"
description = "Generated Rust bindings for Postgres internals, for use with 'pgx'"
Expand Down Expand Up @@ -30,16 +30,16 @@ rustdoc-args = ["--cfg", "docsrs"]

[dependencies]
memoffset = "0.6.5"
pgx-macros = { path = "../pgx-macros/", version = "=0.7.0-beta.0" }
pgx-sql-entity-graph = { path = "../pgx-sql-entity-graph/", version = "=0.7.0-beta.0" }
pgx-macros = { path = "../pgx-macros/", version = "=0.7.0-beta.1" }
pgx-sql-entity-graph = { path = "../pgx-sql-entity-graph/", version = "=0.7.0-beta.1" }
serde = { version = "1.0.152", features = [ "derive" ] } # impls on pub types
# polyfill until #![feature(strict_provenance)] stabilizes
sptr = "0.3"
libc = "0.2"

[build-dependencies]
bindgen = { version = "0.60.1", default-features = false, features = ["runtime"] }
pgx-pg-config= { path = "../pgx-pg-config/", version = "=0.7.0-beta.0" }
pgx-pg-config= { path = "../pgx-pg-config/", version = "=0.7.0-beta.1" }
proc-macro2 = "1.0.49"
quote = "1.0.23"
syn = { version = "1.0.107", features = [ "extra-traits", "full", "fold", "parsing" ] }
Expand Down
2 changes: 1 addition & 1 deletion pgx-sql-entity-graph/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "pgx-sql-entity-graph"
version = "0.7.0-beta.0"
version = "0.7.0-beta.1"
authors = ["ZomboDB, LLC <[email protected]>"]
license = "MIT"
description = "Sql Entity Graph for `pgx`"
Expand Down
10 changes: 5 additions & 5 deletions pgx-tests/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "pgx-tests"
version = "0.7.0-beta.0"
version = "0.7.0-beta.1"
authors = ["ZomboDB, LLC <[email protected]>"]
license = "MIT"
description = "Test framework for 'pgx'-based Postgres extensions"
Expand Down Expand Up @@ -37,13 +37,13 @@ clap-cargo = "0.10.0"
owo-colors = "3.5.0"
once_cell = "1.17.0"
libc = "0.2.139"
pgx-macros = { path = "../pgx-macros", version = "=0.7.0-beta.0" }
pgx-pg-config = { path = "../pgx-pg-config", version = "=0.7.0-beta.0" }
pgx-macros = { path = "../pgx-macros", version = "=0.7.0-beta.1" }
pgx-pg-config = { path = "../pgx-pg-config", version = "=0.7.0-beta.1" }
postgres = "0.19.4"
regex = "1.7.1"
serde = "1.0.152"
serde_json = "1.0.91"
sysinfo = "0.27.5"
sysinfo = "0.27.6"
time = "0.3.17"
eyre = "0.6.8"
thiserror = "1.0"
Expand All @@ -55,4 +55,4 @@ eyre = "0.6.8" # testing functions that return `eyre::Result`
path = "../pgx"
default-features = false
features = [ "time-crate" ] # testing purposes
version = "=0.7.0-beta.0"
version = "=0.7.0-beta.1"
Loading

0 comments on commit 90d0fce

Please sign in to comment.