Skip to content

Commit

Permalink
Merge pull request #221 from theseus-rs/update-default-embedded-postg…
Browse files Browse the repository at this point in the history
…resql-version

chore: update default embedded postgresql version to 17.0.1 to support pgcrypto on mac
  • Loading branch information
brianheineman authored Oct 29, 2024
2 parents 9e96ad0 + 0abd4fb commit e7d3540
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion rsql_drivers/src/postgres/driver.rs
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ use tokio_postgres::{Client, Column, NoTls, Row};
use tracing::debug;
use url::Url;

const POSTGRESQL_EMBEDDED_VERSION: &str = "=17.0.0";
const POSTGRESQL_EMBEDDED_VERSION: &str = "=17.0.1";

#[derive(Debug)]
pub struct Driver;
Expand Down
2 changes: 1 addition & 1 deletion rsql_drivers/src/postgresql/driver.rs
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ use std::string::ToString;
use tracing::debug;
use url::Url;

const POSTGRESQL_EMBEDDED_VERSION: &str = "=17.0.0";
const POSTGRESQL_EMBEDDED_VERSION: &str = "=17.0.1";

#[derive(Debug)]
pub struct Driver;
Expand Down

0 comments on commit e7d3540

Please sign in to comment.