Skip to content
This repository has been archived by the owner on Apr 25, 2023. It is now read-only.

Commit

Permalink
Update docs to use all features, bump to 0.2.0-alpha.10
Browse files Browse the repository at this point in the history
  • Loading branch information
Julius de Bruijn committed Mar 18, 2020
1 parent 5463232 commit 6ea0656
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 2 deletions.
18 changes: 18 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,23 @@
# Changelog

## v0.2.0-alpha.10

- Use the recommended way to implement tokio_postgres::ToSql::to_sql_checked
- Introduce byte values
- Update to mysql_async 0.22
- Handle many more postgres types
- Test that timestamptz roundtrips on postgres
- Add support for arrays of UUIDs, IPs and floats on pg
- Add support for money columns on postgres
- Allow querying using tuples in `IN`
- Fix small decimal values on postgres
- Support more array types on postgres
- Ban Decimal::from_f64
- Add support for postgres `bit` and `varbit` columns
- Interpret MySQL time values as DateTime
- Fix and test array of bit vectors support on postgres
- Update docs setup to document all features

## v0.2.0-alpha.9

- Correct position for GROUP BY if having ORDER BY in the same clause
Expand Down
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "quaint"
version = "0.2.0-alpha.9"
version = "0.2.0-alpha.10"
authors = [
"Julius de Bruijn <[email protected]>",
"Katharina Fey <[email protected]>",
Expand All @@ -19,7 +19,7 @@ keywords = ["mysql", "postgresql", "sqlite", "sql"]
documentation = "https://docs.rs/quaint/"

[package.metadata.docs.rs]
features = [ "full" ]
features = [ "full", "serde-support", "json-1", "uuid-0_8", "chrono-0_4", "array" ]

[features]
default = []
Expand Down

0 comments on commit 6ea0656

Please sign in to comment.