CHANGELOG
This commit is contained in:
parent
bfca886236
commit
2f584ac18b
35
CHANGELOG.md
35
CHANGELOG.md
@ -5,6 +5,41 @@ All notable changes to this project will be documented in this file.
|
|||||||
The format is based on [Keep a Changelog](http://keepachangelog.com/)
|
The format is based on [Keep a Changelog](http://keepachangelog.com/)
|
||||||
and this project adheres to [Semantic Versioning](http://semver.org/).
|
and this project adheres to [Semantic Versioning](http://semver.org/).
|
||||||
|
|
||||||
|
## 1.1.3 - Pending
|
||||||
|
|
||||||
|
## New Features
|
||||||
|
|
||||||
|
- [sea-orm-codegen] register seaography entity module
|
||||||
|
- [sea-orm-codegen] register seaography active enum
|
||||||
|
|
||||||
|
```rust
|
||||||
|
pub mod prelude;
|
||||||
|
|
||||||
|
pub mod sea_orm_active_enums;
|
||||||
|
|
||||||
|
pub mod baker;
|
||||||
|
pub mod bakery;
|
||||||
|
pub mod cake;
|
||||||
|
pub mod cakes_bakers;
|
||||||
|
pub mod customer;
|
||||||
|
pub mod lineitem;
|
||||||
|
pub mod order;
|
||||||
|
|
||||||
|
seaography::register_entity_modules!([
|
||||||
|
baker,
|
||||||
|
bakery,
|
||||||
|
cake,
|
||||||
|
cakes_bakers,
|
||||||
|
customer,
|
||||||
|
lineitem,
|
||||||
|
order,
|
||||||
|
]);
|
||||||
|
|
||||||
|
seaography::register_active_enums!([
|
||||||
|
sea_orm_active_enums::Tea,
|
||||||
|
sea_orm_active_enums::Color,
|
||||||
|
]);
|
||||||
|
```
|
||||||
|
|
||||||
## 1.1.2 - 2024-12-02
|
## 1.1.2 - 2024-12-02
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user