diff --git a/CHANGELOG.md b/CHANGELOG.md index ab8c1da..861864b 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 fb09739..c779da9 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 233d948..17a5973 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"