Skip to content

Commit

Permalink
Update version to 0.7.0 (#1022)
Browse files Browse the repository at this point in the history
  • Loading branch information
eeeebbbbrrrr authored Jan 25, 2023
1 parent 383bf7d commit b5806e3
Show file tree
Hide file tree
Showing 16 changed files with 196 additions and 77 deletions.
99 changes: 54 additions & 45 deletions Cargo.lock

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

12 changes: 6 additions & 6 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.1"
version = "0.7.0"
authors = ["ZomboDB, LLC <[email protected]>"]
license = "MIT"
description = "Cargo subcommand for 'pgx' to make Postgres extension development easy"
Expand All @@ -17,20 +17,20 @@ edition = "2021"
atty = "0.2.14"
cargo_metadata = "0.15.2"
cargo_toml = "0.11.8"
clap = { version = "4.1.1", features = [ "env", "suggestions", "cargo", "derive", "wrap_help" ] }
clap = { version = "4.1.4", 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.1" }
pgx-sql-entity-graph = { path = "../pgx-sql-entity-graph", version = "=0.7.0-beta.1" }
pgx-pg-config = { path = "../pgx-pg-config", version = "=0.7.0" }
pgx-sql-entity-graph = { path = "../pgx-sql-entity-graph", version = "=0.7.0" }
prettyplease = "0.1.23"
proc-macro2 = { version = "1.0.49", features = [ "span-locations" ] }
proc-macro2 = { version = "1.0.50", features = [ "span-locations" ] }
quote = "1.0.23"
rayon = "1.6.1"
regex = "1.7.1"
ureq = "2.6.1"
ureq = "2.6.2"
url = "2.3.1"
serde = { version = "1.0.152", features = [ "derive" ] }
serde_derive = "1.0.152"
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.1"
pgx = "=0.7.0"

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

[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.1"
pgx = "=0.7.0"

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

Expand Down
2 changes: 1 addition & 1 deletion pgx-examples/bad_ideas/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ pg_test = []
[dependencies]
pgx = { path = "../../pgx", default-features = false }
rand = "0.8.5"
ureq = "2.6.1"
ureq = "2.6.2"

[dev-dependencies]
pgx-tests = { path = "../../pgx-tests" }
Expand Down
6 changes: 3 additions & 3 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.1"
version = "0.7.0"
authors = ["ZomboDB, LLC <[email protected]>"]
license = "MIT"
description = "Proc Macros for 'pgx'"
Expand All @@ -21,8 +21,8 @@ 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.1" }
proc-macro2 = "1.0.49"
pgx-sql-entity-graph = { path = "../pgx-sql-entity-graph", version = "=0.7.0" }
proc-macro2 = "1.0.50"
quote = "1.0.23"
syn = { version = "1.0.107", features = [ "extra-traits", "full", "fold", "parsing" ] }

Expand Down
Loading

0 comments on commit b5806e3

Please sign in to comment.