You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.md
+21-11Lines changed: 21 additions & 11 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -7,12 +7,6 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
7
7
8
8
## 1.0.0 - pending
9
9
10
-
### Enhancements
11
-
12
-
*`#![forbid(unsafe_code)]` in all workspace crates.
13
-
14
-
* Removed unnecessary `'static` bounds from type signatures.
15
-
16
10
### New features
17
11
18
12
* Unify `Expr` and `SimpleExpr` as one type. `SimpleExpr` is kept as an alias of `Expr`, but they can now be used interchangably. There may be a few compile
*`#![forbid(unsafe_code)]` in all workspace crates https://github.com/SeaQL/sea-query/pull/930
33
+
* Removed unnecessary `'static` bounds from type signatures https://github.com/SeaQL/sea-query/pull/921
34
+
* Most `Value` variants are now unboxed. Previously the size is 24 bytes. https://github.com/SeaQL/sea-query/pull/925
35
+
```rust
36
+
assert_eq!(std::mem::size_of::<Value>(), 32);
37
+
```
39
38
40
-
* Removed inherent `SimpleExpr` methods that duplicate `ExprTrait`. If you encounter the following error, please add `use sea_query::ExprTrait` in scope https://github.com/SeaQL/sea-query/pull/890
39
+
### Breaking Changes
41
40
41
+
* Removed inherent `SimpleExpr` methods that duplicate `ExprTrait`. If you encounter the following error, please add `use sea_query::ExprTrait` in scope https://github.com/SeaQL/sea-query/pull/890
0 commit comments