From 3c565dc2f73f693c344e6cf4e2cb33703a920627 Mon Sep 17 00:00:00 2001 From: Pino de Candia <32303022+pinodeca@users.noreply.github.com> Date: Wed, 29 Jul 2026 16:27:39 +0000 Subject: [PATCH] Update duroxide to 0.1.30 --- .github/copilot-instructions.md | 2 +- CHANGELOG.md | 6 ++++++ Cargo.toml | 2 +- docs/architecture.md | 2 +- 4 files changed, 9 insertions(+), 3 deletions(-) diff --git a/.github/copilot-instructions.md b/.github/copilot-instructions.md index 6c0f6a3..a14b8f5 100644 --- a/.github/copilot-instructions.md +++ b/.github/copilot-instructions.md @@ -171,7 +171,7 @@ Activities have no restrictions — they run once, result is cached. Release manifests must resolve `duroxide` and `duroxide-pg` from crates.io: ```toml -duroxide = { version = "0.1.29", features = ["sqlite"] } +duroxide = { version = "0.1.30", features = ["sqlite"] } duroxide-pg = "0.1.34" ``` diff --git a/CHANGELOG.md b/CHANGELOG.md index c32b7db..ccd2490 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [Unreleased] + +### Changed + +- **Bumped `duroxide` dependency** — `0.1.29` → `0.1.30`. + ## [0.1.27] - 2026-05-25 ### Changed diff --git a/Cargo.toml b/Cargo.toml index ea55fc9..d8272d9 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -7,7 +7,7 @@ edition = "2021" crate-type = ["cdylib"] [dependencies] -duroxide = { version = "0.1.29", features = ["sqlite"] } +duroxide = { version = "0.1.30", features = ["sqlite"] } duroxide-pg = "0.1.34" napi = { version = "2", features = ["async", "napi6", "serde-json"] } napi-derive = "2" diff --git a/docs/architecture.md b/docs/architecture.md index d5e6b0d..0278ed4 100644 --- a/docs/architecture.md +++ b/docs/architecture.md @@ -249,7 +249,7 @@ Release manifests resolve both Rust dependencies from crates.io. Keep not ship `[patch.crates-io]` sections or inline `path =` overrides: ```toml -duroxide = { version = "0.1.29", features = ["sqlite"] } +duroxide = { version = "0.1.30", features = ["sqlite"] } duroxide-pg = "0.1.34" ```