Skip to content

Commit 0eb15c1

Browse files
committed
release: 0.6.0
1 parent a9b7569 commit 0eb15c1

File tree

5 files changed

+46
-6
lines changed

5 files changed

+46
-6
lines changed

.editorconfig

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,4 +25,4 @@ insert_final_newline = false
2525

2626
[*.{kt, kts}]
2727
disabled_rules = no-wildcard-imports, import-ordering
28-
kotlin_imports_layout = idea
28+
kotlin_imports_layout = *, java.**, javax.**, kotlin.**, ^

CHANGELOG.md

Lines changed: 19 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,17 @@
11
# Changelog
22

3+
## 0.6.0 (2021-05-20)
4+
5+
### Features
6+
7+
- support auto detect datetime format ([a9b75691](https://github.com/ymind/rsql-querydsl/commit/a9b75691aca805cb28115698b1d270a7d279e416))
8+
9+
10+
### Build System
11+
12+
- **gradle**: bumped gradle wrapper version to 7.0.2 ([e11163ac](https://github.com/ymind/rsql-querydsl/commit/e11163ac933fce0a3f43ea8f97803e5da2109e5d))
13+
14+
315
## 0.5.22 (2021-05-10)
416

517
### Bug Fixes
@@ -66,7 +78,6 @@
6678

6779
### Features
6880

69-
- implement primary features and challenges ([d3336750](https://github.com/ymind/rsql-querydsl/commit/d333675068fbd3051b8a6fd06b6e34d8826f73bd))
7081
- support custom entity field type handler ([063203a0](https://github.com/ymind/rsql-querydsl/commit/063203a00d26c694d1e20de24a36e5cddbf49b4e))
7182

7283

@@ -136,3 +147,10 @@
136147
- **github**: adjust ci config ([0f06f6cc](https://github.com/ymind/rsql-querydsl/commit/0f06f6cc56b273b0d07ae89510f4f175e85a2582))
137148
- **github**: adjust project version update command ([4c7f68e9](https://github.com/ymind/rsql-querydsl/commit/4c7f68e97fcded9d17ccb732f556a29309f66b56))
138149

150+
151+
## 0.1.0 (2020-06-03)
152+
153+
### Features
154+
155+
- implement primary features and challenges ([d3336750](https://github.com/ymind/rsql-querydsl/commit/d333675068fbd3051b8a6fd06b6e34d8826f73bd))
156+

CHANGELOG.zh-cn.md

Lines changed: 19 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,17 @@
11
# 更新日志
22

3+
## 0.6.0 (2021-05-20)
4+
5+
### Features
6+
7+
- support auto detect datetime format ([a9b75691](https://github.com/ymind/rsql-querydsl/commit/a9b75691aca805cb28115698b1d270a7d279e416))
8+
9+
10+
### Build System
11+
12+
- **gradle**: bumped gradle wrapper version to 7.0.2 ([e11163ac](https://github.com/ymind/rsql-querydsl/commit/e11163ac933fce0a3f43ea8f97803e5da2109e5d))
13+
14+
315
## 0.5.22 (2021-05-10)
416

517
### Bug Fixes
@@ -66,7 +78,6 @@
6678

6779
### Features
6880

69-
- 实现主要功能 ([d3336750](https://github.com/ymind/rsql-querydsl/commit/d333675068fbd3051b8a6fd06b6e34d8826f73bd))
7081
- support custom entity field type handler ([063203a0](https://github.com/ymind/rsql-querydsl/commit/063203a00d26c694d1e20de24a36e5cddbf49b4e))
7182

7283

@@ -136,3 +147,10 @@
136147
- **github**: adjust ci config ([0f06f6cc](https://github.com/ymind/rsql-querydsl/commit/0f06f6cc56b273b0d07ae89510f4f175e85a2582))
137148
- **github**: adjust project version update command ([4c7f68e9](https://github.com/ymind/rsql-querydsl/commit/4c7f68e97fcded9d17ccb732f556a29309f66b56))
138149

150+
151+
## 0.1.0 (2020-06-03)
152+
153+
### Features
154+
155+
- 实现主要功能 ([d3336750](https://github.com/ymind/rsql-querydsl/commit/d333675068fbd3051b8a6fd06b6e34d8826f73bd))
156+

build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ plugins {
2222
}
2323

2424
group = "team.yi.rsql"
25-
version = "0.5.22"
25+
version = "0.6.0"
2626
description = "Integration RSQL query language and Querydsl framework."
2727

2828
java {

src/test/kotlin/team/yi/rsql/querydsl/test/kotlintest/QuerydslRsqlTest.kt

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,14 +3,14 @@ package team.yi.rsql.querydsl.test.kotlintest
33
import com.querydsl.core.Tuple
44
import com.querydsl.core.types.Ops
55
import com.querydsl.core.types.dsl.Expressions
6-
import javax.persistence.EntityManager
76
import org.junit.jupiter.api.Assertions.*
87
import org.junit.jupiter.api.Test
98
import org.springframework.beans.factory.annotation.Autowired
109
import team.yi.rsql.querydsl.QuerydslRsql
1110
import team.yi.rsql.querydsl.RsqlConfig
1211
import team.yi.rsql.querydsl.model.Car
1312
import team.yi.rsql.querydsl.test.BaseRsqlTest
13+
import javax.persistence.EntityManager
1414

1515
@Suppress("SpellCheckingInspection", "UNCHECKED_CAST")
1616
class QuerydslRsqlTest : BaseRsqlTest() {
@@ -246,7 +246,11 @@ class QuerydslRsqlTest : BaseRsqlTest() {
246246
.from("Car")
247247
.where("id=notnull=''")
248248
.globalPredicate(
249-
Expressions.booleanOperation(Ops.EQ, Expressions.booleanPath("active"), Expressions.asBoolean(true))
249+
Expressions.booleanOperation(
250+
Ops.EQ,
251+
Expressions.booleanPath("active"),
252+
Expressions.asBoolean(true),
253+
)
250254
)
251255
.sort("id.desc")
252256
.build()

0 commit comments

Comments
 (0)