From 7517078a86ed1ee990a2a5531007e90dd7a8af9e Mon Sep 17 00:00:00 2001 From: Pino de Candia <32303022+pinodeca@users.noreply.github.com> Date: Wed, 17 Jun 2026 22:49:17 +0000 Subject: [PATCH] chore: start 0.2.4 development cycle Open the next development cycle after the v0.2.3 release: - bump version 0.2.3 -> 0.2.4 (Cargo.toml, Cargo.lock) - add empty upgrade script sql/pg_durable--0.2.3--0.2.4.sql (no schema changes yet) - add a '## [0.2.4] - Unreleased' placeholder to CHANGELOG.md Part of #243. --- CHANGELOG.md | 2 ++ Cargo.lock | 2 +- Cargo.toml | 2 +- sql/pg_durable--0.2.3--0.2.4.sql | 9 +++++++++ 4 files changed, 13 insertions(+), 2 deletions(-) create mode 100644 sql/pg_durable--0.2.3--0.2.4.sql diff --git a/CHANGELOG.md b/CHANGELOG.md index 36082d34..b53ae188 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,8 @@ All notable changes to this project are documented in this file. The format is b Pre-1.0 note: while `pg_durable` is in major version `0`, minor releases may include breaking changes. +## [0.2.4] - Unreleased + ## [0.2.3] - 2026-06-17 Provider-line note: v0.2.3 stays in the `duroxide-pg` provider compatibility line started in v0.2.2, so the upgrade source is v0.2.2 (`sql/pg_durable--0.2.2--0.2.3.sql`). diff --git a/Cargo.lock b/Cargo.lock index 73831975..171bab36 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1892,7 +1892,7 @@ dependencies = [ [[package]] name = "pg_durable" -version = "0.2.3" +version = "0.2.4" dependencies = [ "bigdecimal", "chrono", diff --git a/Cargo.toml b/Cargo.toml index 481b9777..8b11990f 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "pg_durable" -version = "0.2.3" +version = "0.2.4" edition = "2021" license = "PostgreSQL" repository = "https://github.com/microsoft/pg_durable" diff --git a/sql/pg_durable--0.2.3--0.2.4.sql b/sql/pg_durable--0.2.3--0.2.4.sql new file mode 100644 index 00000000..c00b2896 --- /dev/null +++ b/sql/pg_durable--0.2.3--0.2.4.sql @@ -0,0 +1,9 @@ +-- Copyright (c) Microsoft Corporation. +-- Licensed under the PostgreSQL License. + +-- pg_durable upgrade: 0.2.3 → 0.2.4 +-- +-- No schema changes yet in this release. +-- Add DDL here for any df-schema changes that land in 0.2.4. See +-- docs/upgrade-testing.md for the upgrade-script and backward-compatibility +-- requirements (Scenario A / B1 / B2).