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
+5-5Lines changed: 5 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -10,15 +10,15 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
10
10
### New features
11
11
12
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
13
-
errors and some clippy warnings, basically just remove the redundant `.into()`#889
13
+
errors and some clippy warnings, basically just remove the redundant `.into()`https://github.com/SeaQL/sea-query/pull/889
14
14
```rust
15
15
pubtypeSimpleExpr=Expr; // !
16
16
implFrom<Expr> forSimpleExpr { .. } // now removed
17
17
```
18
18
19
19
### Breaking Changes
20
20
21
-
* Removed inherent `SimpleExpr` methods that duplicate `ExprTrait`. If you encounter the following error, please add `use sea_query::ExprTrait` in scope #890
21
+
* 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
* Added `non_exhaustive` to AST enums. It allows us to add new features and extend the AST without breaking the API. If you encounter the following error,
49
-
please add a wildcard match `_ => {..}`#891
49
+
please add a wildcard match `_ => {..}`https://github.com/SeaQL/sea-query/pull/891
0 commit comments