File tree Expand file tree Collapse file tree 1 file changed +2
-10
lines changed Expand file tree Collapse file tree 1 file changed +2
-10
lines changed Original file line number Diff line number Diff line change @@ -147,14 +147,11 @@ pub static V15: LazyLock<VersionReq> = LazyLock::new(|| VersionReq::parse("=15")
147147pub static V14 : LazyLock < VersionReq > = LazyLock :: new ( || VersionReq :: parse ( "=14" ) . unwrap ( ) ) ;
148148
149149/// The latest PostgreSQL version 13
150- pub static V13 : LazyLock < VersionReq > = LazyLock :: new ( || VersionReq :: parse ( "=13" ) . unwrap ( ) ) ;
151-
152- /// The latest PostgreSQL version 12
153150#[ deprecated(
154- since = "0.1 .0" ,
151+ since = "0.17 .0" ,
155152 note = "See https://www.postgresql.org/developer/roadmap/"
156153) ]
157- pub static V12 : LazyLock < VersionReq > = LazyLock :: new ( || VersionReq :: parse ( "=12 " ) . unwrap ( ) ) ;
154+ pub static V13 : LazyLock < VersionReq > = LazyLock :: new ( || VersionReq :: parse ( "=13 " ) . unwrap ( ) ) ;
158155
159156pub use settings:: BOOTSTRAP_DATABASE ;
160157pub use settings:: BOOTSTRAP_SUPERUSER ;
@@ -199,9 +196,4 @@ mod tests {
199196 fn test_version_13 ( ) {
200197 assert_eq ! ( V13 . to_string( ) , "=13" ) ;
201198 }
202-
203- #[ test]
204- fn test_version_12 ( ) {
205- assert_eq ! ( V12 . to_string( ) , "=12" ) ;
206- }
207199}
You can’t perform that action at this time.
0 commit comments