Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/copilot-instructions.md
Original file line number Diff line number Diff line change
Expand Up @@ -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"
```

Expand Down
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
2 changes: 1 addition & 1 deletion docs/architecture.md
Original file line number Diff line number Diff line change
Expand Up @@ -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"
```

Expand Down
Loading