Skip to content

Commit

Permalink
hit some other places where pg17 should be referenced
Browse files Browse the repository at this point in the history
  • Loading branch information
eeeebbbbrrrr committed Jul 27, 2024
1 parent 972c172 commit 7e8df43
Show file tree
Hide file tree
Showing 8 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@

`pgrx` is a framework for developing PostgreSQL extensions in Rust and strives to be as idiomatic and safe as possible.

`pgrx` supports Postgres 12 through Postgres 16.
`pgrx` supports Postgres 12 through Postgres 17.

**Feel free to join our [Discord Server](https://discord.gg/PMrpdJsqcJ).**

Expand Down
8 changes: 4 additions & 4 deletions cargo-pgrx/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -336,7 +336,7 @@ Compile/install extension to a pgrx-managed Postgres instance and start psql
Usage: cargo pgrx run [OPTIONS] [PG_VERSION] [DBNAME]

Arguments:
[PG_VERSION] Do you want to run against pg12, pg13, pg14, pg15, or pg16? [env: PG_VERSION=]
[PG_VERSION] Do you want to run against pg12, pg13, pg14, pg15, pg16, or pg17? [env: PG_VERSION=]
[DBNAME] The database to connect to (and create if the first time). Defaults to a database with the same name as the current extension name

Options:
Expand Down Expand Up @@ -386,7 +386,7 @@ Connect, via psql, to a Postgres instance
Usage: cargo pgrx connect [OPTIONS] [PG_VERSION] [DBNAME]

Arguments:
[PG_VERSION] Do you want to run against pg12, pg13, pg14, pg15, or pg16? [env: PG_VERSION=]
[PG_VERSION] Do you want to run against pg12, pg13, pg14, pg15, pg16, or pg17 [env: PG_VERSION=]
[DBNAME] The database to connect to (and create if the first time). Defaults to a database with the same name as the current extension name [env: DBNAME=]

Options:
Expand Down Expand Up @@ -504,7 +504,7 @@ Run the test suite for this crate
Usage: cargo pgrx test [OPTIONS] [PG_VERSION] [TESTNAME]

Arguments:
[PG_VERSION] Do you want to run against pg12, pg13, pg14, pg15, pg16, or all? [env: PG_VERSION=]
[PG_VERSION] Do you want to run against pg12, pg13, pg14, pg15, pg16, pg17 or all? [env: PG_VERSION=]
[TESTNAME] If specified, only run tests containing this string in their names

Options:
Expand Down Expand Up @@ -591,7 +591,7 @@ Generate extension schema files
Usage: cargo pgrx schema [OPTIONS] [PG_VERSION]

Arguments:
[PG_VERSION] Do you want to run against pg12, pg13, pg14, pg15, or pg16?
[PG_VERSION] Do you want to run against pg12, pg13, pg14, pg15, pg16, or pg17?

Options:
-p, --package <PACKAGE> Package to build (see `cargo help pkgid`)
Expand Down
2 changes: 1 addition & 1 deletion cargo-pgrx/src/command/connect.rs
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ use std::path::PathBuf;
#[derive(clap::Args, Debug)]
#[clap(author)]
pub(crate) struct Connect {
/// Do you want to run against pg12, pg13, pg14, pg15, or pg16?
/// Do you want to run against pg12, pg13, pg14, pg15, pg16, or pg17?
#[clap(env = "PG_VERSION")]
pg_version: Option<String>,
/// The database to connect to (and create if the first time). Defaults to a database with the same name as the current extension name
Expand Down
2 changes: 1 addition & 1 deletion cargo-pgrx/src/command/run.rs
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ use std::process::Command;
#[derive(clap::Args, Debug)]
#[clap(author)]
pub(crate) struct Run {
/// Do you want to run against pg12, pg13, pg14, pg15, or pg16?
/// Do you want to run against pg12, pg13, pg14, pg15, pg16, or pg17?
#[clap(env = "PG_VERSION")]
pg_version: Option<String>,
/// The database to connect to (and create if the first time). Defaults to a database with the same name as the current extension name
Expand Down
2 changes: 1 addition & 1 deletion cargo-pgrx/src/command/schema.rs
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ pub(crate) struct Schema {
/// Build in test mode (for `cargo pgrx test`)
#[clap(long)]
test: bool,
/// Do you want to run against pg12, pg13, pg14, pg15, or pg16?
/// Do you want to run against pg12, pg13, pg14, pg15, pg16, or pg17?
pg_version: Option<String>,
/// Compile for release mode (default is debug)
#[clap(long, short)]
Expand Down
2 changes: 1 addition & 1 deletion cargo-pgrx/src/command/start.rs
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ use std::process::Stdio;
#[derive(clap::Args, Debug, Clone)]
#[clap(author)]
pub(crate) struct Start {
/// The Postgres version to stop (pg12, pg13, pg14, pg15, pg16, or all)
/// The Postgres version to stop (pg12, pg13, pg14, pg15, pg16, pg17, or all)
#[clap(env = "PG_VERSION")]
pg_version: Option<String>,
#[clap(from_global, action = ArgAction::Count)]
Expand Down
2 changes: 1 addition & 1 deletion cargo-pgrx/src/command/stop.rs
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ use std::process::Stdio;
#[derive(clap::Args, Debug, Clone)]
#[clap(author)]
pub(crate) struct Stop {
/// The Postgres version to stop (pg12, pg13, pg14, pg15, pg16, or all)
/// The Postgres version to stop (pg12, pg13, pg14, pg15, pg16, pg17, or all)
#[clap(env = "PG_VERSION")]
pg_version: Option<String>,
#[clap(from_global, action = ArgAction::Count)]
Expand Down
2 changes: 1 addition & 1 deletion cargo-pgrx/src/command/test.rs
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ use crate::CommandExecute;
#[derive(clap::Args, Debug, Clone)]
#[clap(author)]
pub(crate) struct Test {
/// Do you want to run against pg12, pg13, pg14, pg15, pg16, or all?
/// Do you want to run against pg12, pg13, pg14, pg15, pg16, pg17, or all?
#[clap(env = "PG_VERSION")]
pg_version: Option<String>,
/// If specified, only run tests containing this string in their names
Expand Down

0 comments on commit 7e8df43

Please sign in to comment.