From 116a1a1c1a0d219eb0faf4b8d40fe1d429b6d23d Mon Sep 17 00:00:00 2001 From: Chris Tsang Date: Wed, 22 Nov 2023 21:49:13 +0000 Subject: [PATCH] 0.30.3 --- .gitignore | 1 + CHANGELOG.md | 13 +++++++++++-- Cargo.toml | 2 +- sea-query-binder/Cargo.toml | 2 +- sea-query-diesel/Cargo.toml | 2 +- sea-query-postgres/Cargo.toml | 2 +- sea-query-rbatis/Cargo.toml | 2 +- sea-query-rusqlite/Cargo.toml | 2 +- 8 files changed, 18 insertions(+), 8 deletions(-) diff --git a/.gitignore b/.gitignore index 3dcf8ed91..d3da3358e 100644 --- a/.gitignore +++ b/.gitignore @@ -1,4 +1,5 @@ target +firedbg Cargo.lock *.sublime* .vscode diff --git a/CHANGELOG.md b/CHANGELOG.md index 9a96e67dc..1266b3a13 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,15 +5,24 @@ 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/). -## Main Branch +## 0.30.3 - 2023-11-22 ### New Features * Added `LTree` column type https://github.com/SeaQL/sea-query/pull/604 +* Improved parenthesis omission logic https://github.com/SeaQL/sea-query/pull/675 + +### Bug Fixes + +* Fixed `BIGINT PRIMARY KEY AUTOINCREMENT` for SQLite https://github.com/SeaQL/sea-query/issues/689 + +### Upgrades + +* Upgrade `chrono` to `0.4.27` ### Breaking changes -* Remove `ToTokens` for `PgInterval` https://github.com/SeaQL/sea-query/pull/710 +* Removed `ToTokens` for `PgInterval` https://github.com/SeaQL/sea-query/pull/710 ### `sea-query-derive` 0.4.1 - 2023-10-19 diff --git a/Cargo.toml b/Cargo.toml index 1f40f0829..7e9ef8845 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -3,7 +3,7 @@ members = [".", "sea-query-derive"] [package] name = "sea-query" -version = "0.31.0" +version = "0.30.3" authors = [ "Chris Tsang ", "Billy Chan ", diff --git a/sea-query-binder/Cargo.toml b/sea-query-binder/Cargo.toml index ca121a2a2..f530b25a1 100644 --- a/sea-query-binder/Cargo.toml +++ b/sea-query-binder/Cargo.toml @@ -17,7 +17,7 @@ rust-version = "1.60" [lib] [dependencies] -sea-query = { version = "0.31", path = "..", default-features = false, features = ["thread-safe"] } +sea-query = { version = "0.30", path = "..", default-features = false, features = ["thread-safe"] } sqlx = { version = "0.7", default-features = false, optional = true } serde_json = { version = "1", default-features = false, optional = true, features = ["std"] } chrono = { version = "0.4", default-features = false, optional = true, features = ["clock"] } diff --git a/sea-query-diesel/Cargo.toml b/sea-query-diesel/Cargo.toml index 4f0c5d85b..88605e08a 100644 --- a/sea-query-diesel/Cargo.toml +++ b/sea-query-diesel/Cargo.toml @@ -17,7 +17,7 @@ rust-version = "1.60" [lib] [dependencies] -sea-query = { version = "0.31", path = "..", default-features = false } +sea-query = { version = "0.30", path = "..", default-features = false } diesel = { version = "2.1.1", features = [ "i-implement-a-third-party-backend-and-opt-into-breaking-changes", ] } diff --git a/sea-query-postgres/Cargo.toml b/sea-query-postgres/Cargo.toml index fe1c057c4..ed42f6596 100644 --- a/sea-query-postgres/Cargo.toml +++ b/sea-query-postgres/Cargo.toml @@ -17,7 +17,7 @@ rust-version = "1.60" [lib] [dependencies] -sea-query = { version = "0.31", path = "..", default-features = false } +sea-query = { version = "0.30", path = "..", default-features = false } postgres-types = { version = "0.2", default-features = false } bytes = { version = "1", default-features = false } rust_decimal = { version = "1", default-features = false, optional = true } diff --git a/sea-query-rbatis/Cargo.toml b/sea-query-rbatis/Cargo.toml index 168edc030..c53f9f3c9 100644 --- a/sea-query-rbatis/Cargo.toml +++ b/sea-query-rbatis/Cargo.toml @@ -17,7 +17,7 @@ rust-version = "1.60" [lib] [dependencies] -sea-query = { version = "0.31", path = "..", default-features = false, features = ["thread-safe"] } +sea-query = { version = "0.30", path = "..", default-features = false, features = ["thread-safe"] } rbs = { version = "4.3.1" } serde_json = { version = "1", default-features = false, optional = true, features = ["std"] } chrono = { version = "0.4", default-features = false, optional = true, features = [ "clock"] } diff --git a/sea-query-rusqlite/Cargo.toml b/sea-query-rusqlite/Cargo.toml index 736fdb974..caa0d0df1 100644 --- a/sea-query-rusqlite/Cargo.toml +++ b/sea-query-rusqlite/Cargo.toml @@ -17,7 +17,7 @@ rust-version = "1.60" [lib] [dependencies] -sea-query = { version = "0.31", path = "..", default-features = false } +sea-query = { version = "0.30", path = "..", default-features = false } rusqlite = { version = "0.29", default-features = false, features = ["bundled"] } [features]