Skip to content

Commit

Permalink
sea-query-rusqlite 0.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
tyt2y3 committed Dec 29, 2023
1 parent 1ef79ec commit 29d61e7
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,10 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](http://keepachangelog.com/)
and this project adheres to [Semantic Versioning](http://semver.org/).

## `sea-query-rusqlite` 0.5.0 - 2023-12-29

* Upgrade `rusqlite` to `0.30`

## 0.30.5 - 2023-12-14

### New Features
Expand Down
4 changes: 2 additions & 2 deletions sea-query-rusqlite/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

[package]
name = "sea-query-rusqlite"
version = "0.4.0"
version = "0.5.0"
authors = [ "Ivan Krivosheev <py.krivosheev@gmail.com>" ]
edition = "2021"
description = "Binder traits for connecting sea-query with Rusqlite"
Expand All @@ -18,7 +18,7 @@ rust-version = "1.60"

[dependencies]
sea-query = { version = "0.30", path = "..", default-features = false }
rusqlite = { version = ">=0.29, <0.31", default-features = false, features = ["bundled"] }
rusqlite = { version = "0.30", default-features = false, features = ["bundled"] }

[features]
with-chrono = ["rusqlite/chrono", "sea-query/with-chrono"]
Expand Down

0 comments on commit 29d61e7

Please sign in to comment.