diff --git a/articles/postgresql-aggregates-with-rust.md b/articles/postgresql-aggregates-with-rust.md index 1bd905951e..3ffa32ef4b 100644 --- a/articles/postgresql-aggregates-with-rust.md +++ b/articles/postgresql-aggregates-with-rust.md @@ -931,7 +931,7 @@ If you're looking for more materials about aggregates, the TimescaleDB folks wro [pgrx-pg_aggregate]: https://docs.rs/pgrx/0.3.0/pgrx/attr.pg_aggregate.html [pgrx-postgrestype]: https://docs.rs/pgrx/0.3.0/pgrx/derive.PostgresType.html [pgrx-system-requirements]: https://github.com/pgcentralfoundation/pgrx/#system-requirements -[plrust]: https://github.com/zombodb/plrust +[plrust]: https://github.com/tcdi/plrust [rustup-rs]: https://rustup.rs/ [wsl]: https://docs.microsoft.com/en-us/windows/wsl/install [std::iter::Iterator]: https://doc.rust-lang.org/std/iter/trait.Iterator.html diff --git a/cargo-pgrx/Cargo.toml b/cargo-pgrx/Cargo.toml index 2e448b6cb8..5b10a9d0e7 100644 --- a/cargo-pgrx/Cargo.toml +++ b/cargo-pgrx/Cargo.toml @@ -11,7 +11,7 @@ [package] name = "cargo-pgrx" version = "0.9.7" -authors = ["ZomboDB, LLC "] +authors = ["PgCentralFoundation, Inc. "] license = "MIT" description = "Cargo subcommand for 'pgrx' to make Postgres extension development easy" homepage = "https://github.com/pgcentralfoundation/pgrx/" diff --git a/cargo-pgrx/README.md b/cargo-pgrx/README.md index 444040b6fd..672cfbcec4 100644 --- a/cargo-pgrx/README.md +++ b/cargo-pgrx/README.md @@ -126,7 +126,7 @@ If a new minor Postgres version is released in the future you can simply run `ca ```shell script cargo-pgrx-init 0.5.0 -ZomboDB, LLC +PgCentralFoundation, Inc. Initialize pgrx development environment for the first time USAGE: @@ -175,7 +175,7 @@ If you'd like to create a "background worker" instead, specify the `--bgworker` ```shell script $ cargo pgrx new --help cargo-pgrx-new 0.5.0 -ZomboDB, LLC +PgCentralFoundation, Inc. Create a new extension crate USAGE: @@ -291,7 +291,7 @@ For Postgres installations which are already on your computer, `cargo pgrx run` ```shell script $ cargo pgrx run --help cargo-pgrx-run 0.5.0 -ZomboDB, LLC +PgCentralFoundation, Inc. Compile/install extension to a pgrx-managed Postgres instance and start psql USAGE: @@ -366,7 +366,7 @@ the specified version of Postgres isn't running, it'll be automatically started. ```shell script cargo-pgrx-connect 0.5. -ZomboDB, LLC +PgCentralFoundation, Inc. Connect, via psql, to a Postgres instance USAGE: @@ -427,7 +427,7 @@ By default, `cargo pgrx install` builds your extension in debug mode. Specifying ```shell script $ cargo pgrx install --help cargo-pgrx-install 0.5.0 -ZomboDB, LLC +PgCentralFoundation, Inc. Install the extension from the current crate to the Postgres specified by whatever `pg_config` is currently on your $PATH @@ -515,7 +515,7 @@ make to the database are not preserved. ```shell script cargo-pgrx-test 0.5.0 -ZomboDB, LLC +PgCentralFoundation, Inc. Run the test suite for this crate USAGE: @@ -598,7 +598,7 @@ distobutions or MacOS Postgres installations. ```shell script $ cargo pgrx package --help cargo-pgrx-package 0.5.0 -ZomboDB, LLC +PgCentralFoundation, Inc. Create an installation package directory USAGE: @@ -654,7 +654,7 @@ If you just want to look at the full extension schema that pgrx will generate, u ```shell script $ cargo pgrx schema --help cargo-pgrx-schema 0.5.0 -ZomboDB, LLC +PgCentralFoundation, Inc. Generate extension schema files USAGE: diff --git a/pgrx-macros/Cargo.toml b/pgrx-macros/Cargo.toml index f490c38a5e..3c6b369801 100644 --- a/pgrx-macros/Cargo.toml +++ b/pgrx-macros/Cargo.toml @@ -11,7 +11,7 @@ [package] name = "pgrx-macros" version = "0.9.7" -authors = ["ZomboDB, LLC "] +authors = ["PgCentralFoundation, Inc. "] license = "MIT" description = "Proc Macros for 'pgrx'" homepage = "https://github.com/pgcentralfoundation/pgrx/" diff --git a/pgrx-pg-config/Cargo.toml b/pgrx-pg-config/Cargo.toml index 47c954b676..cb704d35ee 100644 --- a/pgrx-pg-config/Cargo.toml +++ b/pgrx-pg-config/Cargo.toml @@ -11,7 +11,7 @@ [package] name = "pgrx-pg-config" version = "0.9.7" -authors = ["ZomboDB, LLC "] +authors = ["PgCentralFoundation, Inc. "] license = "MIT" description = "A Postgres pg_config wrapper for 'pgrx'" homepage = "https://github.com/pgcentralfoundation/pgrx/" diff --git a/pgrx-pg-sys/Cargo.toml b/pgrx-pg-sys/Cargo.toml index 079ee54f1e..e2594525db 100644 --- a/pgrx-pg-sys/Cargo.toml +++ b/pgrx-pg-sys/Cargo.toml @@ -11,7 +11,7 @@ [package] name = "pgrx-pg-sys" version = "0.9.7" -authors = ["ZomboDB, LLC "] +authors = ["PgCentralFoundation, Inc. "] license = "MIT" description = "Generated Rust bindings for Postgres internals, for use with 'pgrx'" homepage = "https://github.com/pgcentralfoundation/pgrx/" diff --git a/pgrx-sql-entity-graph/Cargo.toml b/pgrx-sql-entity-graph/Cargo.toml index 400858bc6d..b371f56c81 100644 --- a/pgrx-sql-entity-graph/Cargo.toml +++ b/pgrx-sql-entity-graph/Cargo.toml @@ -11,7 +11,7 @@ [package] name = "pgrx-sql-entity-graph" version = "0.9.7" -authors = ["ZomboDB, LLC "] +authors = ["PgCentralFoundation, Inc. "] license = "MIT" description = "Sql Entity Graph for `pgrx`" homepage = "https://github.com/pgcentralfoundation/pgrx/" diff --git a/pgrx-tests/Cargo.toml b/pgrx-tests/Cargo.toml index 3a7e2ffb7a..4528e1be86 100644 --- a/pgrx-tests/Cargo.toml +++ b/pgrx-tests/Cargo.toml @@ -11,7 +11,7 @@ [package] name = "pgrx-tests" version = "0.9.7" -authors = ["ZomboDB, LLC "] +authors = ["PgCentralFoundation, Inc. "] license = "MIT" description = "Test framework for 'pgrx'-based Postgres extensions" homepage = "https://github.com/pgcentralfoundation/pgrx/" diff --git a/pgrx-version-updater/Cargo.toml b/pgrx-version-updater/Cargo.toml index 415b075627..4239d49c84 100644 --- a/pgrx-version-updater/Cargo.toml +++ b/pgrx-version-updater/Cargo.toml @@ -12,7 +12,7 @@ name = "pgrx-version-updater" version = "0.1.1" edition = "2021" -authors = ["ZomboDB, LLC "] +authors = ["PgCentralFoundation, Inc. "] license = "MIT" description = "Standalone tool to update PGRX Cargo.toml versions and dependencies in preparation for a release." diff --git a/pgrx/Cargo.toml b/pgrx/Cargo.toml index bc903ffce2..961610d7de 100644 --- a/pgrx/Cargo.toml +++ b/pgrx/Cargo.toml @@ -11,7 +11,7 @@ [package] name = "pgrx" version = "0.9.7" -authors = ["ZomboDB, LLC "] +authors = ["PgCentralFoundation, Inc. "] license = "MIT" description = "pgrx: A Rust framework for creating Postgres extensions" homepage = "https://github.com/pgcentralfoundation/pgrx/"