Skip to content

Commit 6cbc8f7

Browse files
committed
release: 0.5.11
1 parent f00b578 commit 6cbc8f7

File tree

4 files changed

+41
-23
lines changed

4 files changed

+41
-23
lines changed

.github/workflows/publish.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: rsql-querydsl
22

3-
on: [push, pull_request]
3+
on: [ push, pull_request ]
44

55
env:
66
OSSRH_USERNAME: ${{ secrets.OSSRH_USERNAME }}
@@ -38,7 +38,7 @@ jobs:
3838
run: ./gradlew build -x test
3939

4040
test:
41-
needs: [build]
41+
needs: [ build ]
4242
runs-on: ubuntu-latest
4343

4444
if: startsWith(github.event.head_commit.message, 'bumped version to ') != true
@@ -67,7 +67,7 @@ jobs:
6767
run: ./gradlew check test -S
6868

6969
deploy_snapshot:
70-
needs: [build, test]
70+
needs: [ build, test ]
7171
runs-on: ubuntu-latest
7272

7373
if: (github.ref == 'refs/heads/master') && startsWith(github.event.head_commit.message, 'release:') != true
@@ -112,7 +112,7 @@ jobs:
112112
rm -rf ./secret.gpg
113113
114114
deploy_release:
115-
needs: [build, test]
115+
needs: [ build, test ]
116116
runs-on: ubuntu-latest
117117

118118
if: startsWith(github.ref, 'refs/tags/') && startsWith(github.event.head_commit.message, 'release')

CHANGELOG.md

Lines changed: 18 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,22 @@
11
# Changelog
22

3+
## 0.5.11 (2021-02-01)
4+
5+
### Bug Fixes
6+
7+
- when has only a single value, the `in` operation will throw an exception ([2e748d22](https://github.com/ymind/rsql-querydsl/commit/2e748d225c4f42604bd6edf0586deaf688d53ee1))
8+
9+
### Chores
10+
11+
- **deps**: bumped spring version from 2.3.4.RELEASE to 2.4.2 ([5dc0c3c7](https://github.com/ymind/rsql-querydsl/commit/5dc0c3c73aefb250e63c3ced28f33c48ff3bc9a0))
12+
- **deps**: bumped jackson-module-kotlin version from 2.11.3 to 2.12.1 ([4edce4cc](https://github.com/ymind/rsql-querydsl/commit/4edce4cc9eb1af9df1f1b05de63e1b9c74450318))
13+
- **gradle**: add use-latest-versions plugin ([f00b578f](https://github.com/ymind/rsql-querydsl/commit/f00b578fbbf8fa65944a82aab05a991fa80b9057))
14+
15+
### Build System
16+
17+
- **gradle**: bumped gradle wrapper version from 6.6.1 to 6.8.1 ([f279f322](https://github.com/ymind/rsql-querydsl/commit/f279f322ec06daaa4f767fe753d96b4700c401c5))
18+
- **kotlin**: bumped kotlin version from 1.4.10 to 1.4.21-2 ([c204e14d](https://github.com/ymind/rsql-querydsl/commit/c204e14d76c9427fdfcfe2e8f01821e013d08bfa))
19+
320
## 0.5.5 (2020-10-09)
421

522
### BREAKING CHANGES
@@ -8,7 +25,6 @@
825
- rename `size` to `limit` ([7cfff03c](https://github.com/ymind/rsql-querydsl/commit/7cfff03c544e283ff95fc9f1c0901433d79e2fd7))
926
- remove `page-string` and `limit-string` support ([289e780a](https://github.com/ymind/rsql-querydsl/commit/289e780a2ed0e24a8c13e9ecda680599703d887a))
1027

11-
1228
### Bug Fixes
1329

1430
- **common**: fix `FieldNotSupportedException` arguments type ([1d8497aa](https://github.com/ymind/rsql-querydsl/commit/1d8497aa71e1a636cf4e4839af1f6557ae85e458))
@@ -17,6 +33,7 @@
1733

1834
### Features
1935

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

2239

@@ -86,10 +103,3 @@
86103
- **github**: adjust ci config ([0f06f6cc](https://github.com/ymind/rsql-querydsl/commit/0f06f6cc56b273b0d07ae89510f4f175e85a2582))
87104
- **github**: adjust project version update command ([4c7f68e9](https://github.com/ymind/rsql-querydsl/commit/4c7f68e97fcded9d17ccb732f556a29309f66b56))
88105

89-
90-
## 0.1.0 (2020-06-03)
91-
92-
### Features
93-
94-
- implement primary features and challenges ([d3336750](https://github.com/ymind/rsql-querydsl/commit/d333675068fbd3051b8a6fd06b6e34d8826f73bd))
95-

CHANGELOG.zh-cn.md

Lines changed: 18 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,22 @@
11
# 更新日志
22

3+
## 0.5.11 (2021-02-01)
4+
5+
### Bug Fixes
6+
7+
- when has only a single value, the `in` operation will throw an exception ([2e748d22](https://github.com/ymind/rsql-querydsl/commit/2e748d225c4f42604bd6edf0586deaf688d53ee1))
8+
9+
### Chores
10+
11+
- **deps**: bumped spring version from 2.3.4.RELEASE to 2.4.2 ([5dc0c3c7](https://github.com/ymind/rsql-querydsl/commit/5dc0c3c73aefb250e63c3ced28f33c48ff3bc9a0))
12+
- **deps**: bumped jackson-module-kotlin version from 2.11.3 to 2.12.1 ([4edce4cc](https://github.com/ymind/rsql-querydsl/commit/4edce4cc9eb1af9df1f1b05de63e1b9c74450318))
13+
- **gradle**: add use-latest-versions plugin ([f00b578f](https://github.com/ymind/rsql-querydsl/commit/f00b578fbbf8fa65944a82aab05a991fa80b9057))
14+
15+
### Build System
16+
17+
- **gradle**: bumped gradle wrapper version from 6.6.1 to 6.8.1 ([f279f322](https://github.com/ymind/rsql-querydsl/commit/f279f322ec06daaa4f767fe753d96b4700c401c5))
18+
- **kotlin**: bumped kotlin version from 1.4.10 to 1.4.21-2 ([c204e14d](https://github.com/ymind/rsql-querydsl/commit/c204e14d76c9427fdfcfe2e8f01821e013d08bfa))
19+
320
## 0.5.5 (2020-10-09)
421

522
### BREAKING CHANGES
@@ -8,7 +25,6 @@
825
- rename `size` to `limit` ([7cfff03c](https://github.com/ymind/rsql-querydsl/commit/7cfff03c544e283ff95fc9f1c0901433d79e2fd7))
926
- remove `page-string` and `limit-string` support ([289e780a](https://github.com/ymind/rsql-querydsl/commit/289e780a2ed0e24a8c13e9ecda680599703d887a))
1027

11-
1228
### Bug Fixes
1329

1430
- **common**: fix `FieldNotSupportedException` arguments type ([1d8497aa](https://github.com/ymind/rsql-querydsl/commit/1d8497aa71e1a636cf4e4839af1f6557ae85e458))
@@ -17,6 +33,7 @@
1733

1834
### Features
1935

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

2239

@@ -86,10 +103,3 @@
86103
- **github**: adjust ci config ([0f06f6cc](https://github.com/ymind/rsql-querydsl/commit/0f06f6cc56b273b0d07ae89510f4f175e85a2582))
87104
- **github**: adjust project version update command ([4c7f68e9](https://github.com/ymind/rsql-querydsl/commit/4c7f68e97fcded9d17ccb732f556a29309f66b56))
88105

89-
90-
## 0.1.0 (2020-06-03)
91-
92-
### Features
93-
94-
- 实现主要功能 ([d3336750](https://github.com/ymind/rsql-querydsl/commit/d333675068fbd3051b8a6fd06b6e34d8826f73bd))
95-

build.gradle.kts

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

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

2828
java {
@@ -89,7 +89,6 @@ tasks {
8989
group = "publishing"
9090

9191
toRef = "master"
92-
isUnstable = true
9392

9493
issueUrlTemplate = "https://github.com/ymind/rsql-querydsl/issues/:issueId"
9594
commitUrlTemplate = "https://github.com/ymind/rsql-querydsl/commit/:commitId"
@@ -122,7 +121,6 @@ tasks {
122121
group = "publishing"
123122

124123
toRef = "master"
125-
isUnstable = true
126124
derivedVersionMark = "NEXT_VERSION:=="
127125

128126
commitLocales = mapOf(

0 commit comments

Comments
 (0)