diff --git a/CHANGELOG.md b/CHANGELOG.md index 2245f1c8..f21b4230 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -10,9 +10,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/). ### Bug Fixes * Fixes `DeriveActiveEnum` (by qualifying `ColumnTypeTrait::def`) https://github.com/SeaQL/sea-orm/issues/1478 - * The CLI command `sea-orm-cli generate entity -u ''` will now generate the following code for each `Binary` or `VarBinary` columns in compact format https://github.com/SeaQL/sea-orm/pull/1529 - ```rs #[derive(Clone, Debug, PartialEq, DeriveEntityModel, Eq)] #[sea_orm(table_name = "binary")] @@ -33,9 +31,7 @@ pub struct Model { pub var_binary: Vec, } ``` - * The CLI command `sea-orm-cli generate entity -u '' --expanded-format` will now generate the following code for each `Binary` or `VarBinary` columns in expanded format https://github.com/SeaQL/sea-orm/pull/1529 - ```rs impl ColumnTrait for Column { type EntityName = Entity; @@ -54,6 +50,7 @@ impl ColumnTrait for Column { } } ``` +* Fix missing documentation on type generated by derive macros https://github.com/SeaQL/sea-orm/pull/1522, https://github.com/SeaQL/sea-orm/pull/1531 ## 0.11.0 - 2023-02-07