From bbbce9457b67a02007263d2028d1e425070e1a03 Mon Sep 17 00:00:00 2001 From: John Children Date: Mon, 30 Mar 2026 17:30:06 +0100 Subject: [PATCH 1/2] fix: Make config field public --- src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib.rs b/src/lib.rs index db523ea..1e03f3b 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -223,7 +223,7 @@ pub struct TmpPostgrustFactoryConfig { /// Disable fsync this will speed up unit tests in exchange for /// not guaranteeing that files will be written if postgresql /// crashes. - disable_fsync: bool, + pub disable_fsync: bool, } impl TmpPostgrustFactory { From bed193596c3285ee687b7e01915703c43d86bb59 Mon Sep 17 00:00:00 2001 From: John Children Date: Mon, 30 Mar 2026 17:30:37 +0100 Subject: [PATCH 2/2] docs: Update version number --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index bcfd643..a7c8727 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tmp-postgrust" -version = "0.10.0" +version = "0.10.1" authors = ["John Children "] license = "MIT" edition = "2018"