Skip to content

Commit 89e72ba

Browse files
committed
Changelog
1 parent 2c57b68 commit 89e72ba

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

CHANGELOG.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -10,15 +10,15 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
1010
### New features
1111

1212
* 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
1414
```rust
1515
pub type SimpleExpr = Expr; // !
1616
impl From<Expr> for SimpleExpr { .. } // now removed
1717
```
1818

1919
### Breaking Changes
2020

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
2222
```rust
2323
error[E0599]: no method named `like` found for enum `sea_query::Expr` in the current scope
2424
|
@@ -33,7 +33,7 @@ help: trait `ExprTrait` which provides `like` is implemented but not in scope; p
3333
-> + use sea_query::ExprTrait;
3434
```
3535
* `ExprTrait::eq` collided with `std::cmp::Eq`. If you encounter the following error, please use `std::cmp::PartialEq::eq(a, b)` or
36-
`sea_query::ExprTrait::eq(a, b)` explicitly #890
36+
`sea_query::ExprTrait::eq(a, b)` explicitly https://github.com/SeaQL/sea-query/pull/890
3737
```rust
3838
error[E0308]: mismatched types
3939
|
@@ -46,7 +46,7 @@ For more information about this error, try `rustc --explain E0308`.
4646
error: could not compile `seaography` (lib) due to 1 previous error
4747
```
4848
* 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
5050
```rust
5151
error[E0004]: non-exhaustive patterns: `&_` not covered
5252
|
@@ -67,7 +67,7 @@ help: ensure that all possible cases are being handled by adding a match arm wit
6767

6868
### Upgrades
6969

70-
* Upgraded to Rust Edition 2024 #885
70+
* Upgraded to Rust Edition 2024 https://github.com/SeaQL/sea-query/pull/885
7171

7272
## 0.32.6 - 2025-05-27
7373

0 commit comments

Comments
 (0)