From 4238ba69964287d04148f5a21c0503616411b0f9 Mon Sep 17 00:00:00 2001 From: Sean Griffin Date: Thu, 2 Feb 2017 11:06:52 -0500 Subject: [PATCH] Add changelog entries for #561 and #577 --- CHANGELOG.md | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index db81351689..b2b15da4a9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,18 @@ for Rust libraries in [RFC #1105](https://github.com/rust-lang/rfcs/blob/master/ ## Unreleased +### Added + +* Added support for the PostgreSQL [`json` and `jsonb` types][pg-json]. They can + be mapped to/from `serde_json::Value`. The `serde` feature must be enabled to + use the JSON types. + +[pg-json]: https://www.postgresql.org/docs/9.6/static/datatype-json.html + +* Added the `print-schema` command to Diesel CLI. This command will print the + output of the `infer_schema!` macro. For more information run `diesel help + print-schema`. + ### Changed * When possible, we will use deprecation warnings for breaking changes.