From a62a7955f159e1e079c0ffc0fadbeda8f81c96fa Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 24 Apr 2026 12:55:49 +0000 Subject: [PATCH] chore(release): 0.2.0 --- CHANGELOG.md | 6 ++++++ Cargo.lock | 2 +- Cargo.toml | 2 +- 3 files changed, 8 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index ab8c1dab..861864b8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,12 @@ and [Semantic Versioning](https://semver.org/spec/v2.0.0.html). ## [Unreleased] +## [0.2.0](https://github.com/f0rr0/pglite-oxide/compare/0.1.0...0.2.0) - 2026-04-24 + +### Added + +- modernize embedded PGlite API and OSS tooling ([#3](https://github.com/f0rr0/pglite-oxide/pull/3)) + - Added the high-level `Pglite` and `PgliteServer` APIs for direct embedded use and PostgreSQL client compatibility. - Added process-local template cluster reuse for fast temporary databases, with diff --git a/Cargo.lock b/Cargo.lock index fb097398..c779da93 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1442,7 +1442,7 @@ checksum = "9b4f627cb1b25917193a259e49bdad08f671f8d9708acfd5fe0a8c1455d87220" [[package]] name = "pglite-oxide" -version = "0.1.0" +version = "0.2.0" dependencies = [ "anyhow", "directories", diff --git a/Cargo.toml b/Cargo.toml index 233d948f..17a5973e 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "pglite-oxide" -version = "0.1.0" +version = "0.2.0" edition = "2024" rust-version = "1.92" description = "Rust helpers for embedding the Electric SQL pglite WebAssembly PostgreSQL runtime"