Skip to content

Commit cb6ae22

Browse files
committed
release: 0.8.11
1 parent 56b5ee1 commit cb6ae22

File tree

4 files changed

+77
-21
lines changed

4 files changed

+77
-21
lines changed

.github/workflows/publish.yml

Lines changed: 24 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -15,17 +15,18 @@ jobs:
1515
if: startsWith(github.event.head_commit.message, 'bumped version to ') != true
1616

1717
steps:
18-
- uses: actions/checkout@v2
18+
- uses: actions/checkout@v4.1.1
1919
with:
2020
fetch-depth: 0
2121

22-
- name: Set up JDK 1.8
23-
uses: actions/setup-java@v1
22+
- name: Set up JDK 8.0.402+6
23+
uses: actions/setup-java@v4.0.0
2424
with:
25-
java-version: 1.8
25+
java-version: 8.0.402+6
26+
distribution: adopt
2627

2728
- name: Cache dependencies
28-
uses: actions/cache@v1
29+
uses: actions/cache@v4.0.0
2930
with:
3031
path: ~/.gradle/caches
3132
key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle*') }}
@@ -44,17 +45,18 @@ jobs:
4445
if: startsWith(github.event.head_commit.message, 'bumped version to ') != true
4546

4647
steps:
47-
- uses: actions/checkout@v2
48+
- uses: actions/checkout@v4.1.1
4849
with:
4950
fetch-depth: 0
5051

51-
- name: Set up JDK 1.8
52-
uses: actions/setup-java@v1
52+
- name: Set up JDK 8.0.402+6
53+
uses: actions/setup-java@v4.0.0
5354
with:
54-
java-version: 1.8
55+
java-version: 8.0.402+6
56+
distribution: adopt
5557

5658
- name: Cache dependencies
57-
uses: actions/cache@v1
59+
uses: actions/cache@v4.0.0
5860
with:
5961
path: ~/.gradle/caches
6062
key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle*') }}
@@ -73,17 +75,18 @@ jobs:
7375
if: (github.ref == 'refs/heads/master') && startsWith(github.event.head_commit.message, 'release:') != true
7476

7577
steps:
76-
- uses: actions/checkout@v2
78+
- uses: actions/checkout@v4.1.1
7779
with:
7880
fetch-depth: 0
7981

80-
- name: Set up JDK 1.8
81-
uses: actions/setup-java@v1
82+
- name: Set up JDK 8.0.402+6
83+
uses: actions/setup-java@v4.0.0
8284
with:
83-
java-version: 1.8
85+
java-version: 8.0.402+6
86+
distribution: adopt
8487

8588
- name: Cache dependencies
86-
uses: actions/cache@v1
89+
uses: actions/cache@v4.0.0
8790
with:
8891
path: ~/.gradle/caches
8992
key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle*') }}
@@ -118,17 +121,18 @@ jobs:
118121
if: startsWith(github.ref, 'refs/tags/') && startsWith(github.event.head_commit.message, 'release')
119122

120123
steps:
121-
- uses: actions/checkout@v2
124+
- uses: actions/checkout@v4.1.1
122125
with:
123126
fetch-depth: 0
124127

125-
- name: Set up JDK 1.8
126-
uses: actions/setup-java@v1
128+
- name: Set up JDK 8.0.402+6
129+
uses: actions/setup-java@v4.0.0
127130
with:
128-
java-version: 1.8
131+
java-version: 8.0.402+6
132+
distribution: adopt
129133

130134
- name: Cache dependencies
131-
uses: actions/cache@v1
135+
uses: actions/cache@v4.0.0
132136
with:
133137
path: ~/.gradle/caches
134138
key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle*') }}

CHANGELOG.md

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

3+
## 0.8.11 (2024-01-29)
4+
5+
### Chores
6+
7+
- **deps**: bumped junit-jupiter-engine version to 5.10.0 ([e3ae7adc](https://github.com/ymind/jacksync/commit/e3ae7adcff383b47bd3576cd522aefb26a9b9f12))
8+
- **deps**: bumped jackson-databind version to 2.16.1 ([565b362a](https://github.com/ymind/jacksync/commit/565b362a67afbd038e52a6a1e65f50d49d9f3148))
9+
- **deps**: bumped junit-jupiter-engine version to 5.10.1 ([7f1e71be](https://github.com/ymind/jacksync/commit/7f1e71be68efcd2fd757ce96867bd27e550a805a))
10+
- **test**: code optimize ([43536a2c](https://github.com/ymind/jacksync/commit/43536a2c0b7f246c21b418ba9792b93f154b3939))
11+
- code optimize ([d5cc31d2](https://github.com/ymind/jacksync/commit/d5cc31d290caa8d783912fe8c0d8598d1930ef63))
12+
13+
14+
### Styles
15+
16+
- code cleanup ([a316d3fd](https://github.com/ymind/jacksync/commit/a316d3fdb3572820b6480d2bd6b613b1d4591f66))
17+
18+
19+
### Build System
20+
21+
- **gradle**: bumped gradle version to 8.5 ([399c122e](https://github.com/ymind/jacksync/commit/399c122e223a0f83db982f2fdde8ec4a6b8b534f))
22+
- **gradle:plugin**: bumped team.yi.semantic-gitlog version to 0.6.5 ([0a03d100](https://github.com/ymind/jacksync/commit/0a03d100c6b0365933afee6c1e640065f295172d))
23+
- **gradle:plugin**: bumped io.gitlab.arturbosch.detekt version to 1.23.1 ([797835bb](https://github.com/ymind/jacksync/commit/797835bbfd0df7bc22e56b0a32b664536dcaf43e))
24+
- **gradle:plugin**: bumped io.gitlab.arturbosch.detekt version to 1.23.4 ([1815e94a](https://github.com/ymind/jacksync/commit/1815e94a104990bfe5361d1efd70fbff050ac664))
25+
- **gradle:plugin**: bumped com.github.ben-manes.versions version to 0.51.0 ([68b704b7](https://github.com/ymind/jacksync/commit/68b704b7ce462151b35d74d9cb5e4d8d9908a995))
26+
- **kotlin**: bumped kotlin version to 1.9.22 ([c077bb78](https://github.com/ymind/jacksync/commit/c077bb783448525701ac0d4a169491471dfed73d))
27+
28+
329
## 0.8.0 (2023-07-13)
430

531
### Features

CHANGELOG.zh-cn.md

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

3+
## 0.8.11 (2024-01-29)
4+
5+
### Chores
6+
7+
- **deps**: bumped junit-jupiter-engine version to 5.10.0 ([e3ae7adc](https://github.com/ymind/jacksync/commit/e3ae7adcff383b47bd3576cd522aefb26a9b9f12))
8+
- **deps**: bumped jackson-databind version to 2.16.1 ([565b362a](https://github.com/ymind/jacksync/commit/565b362a67afbd038e52a6a1e65f50d49d9f3148))
9+
- **deps**: bumped junit-jupiter-engine version to 5.10.1 ([7f1e71be](https://github.com/ymind/jacksync/commit/7f1e71be68efcd2fd757ce96867bd27e550a805a))
10+
- **test**: code optimize ([43536a2c](https://github.com/ymind/jacksync/commit/43536a2c0b7f246c21b418ba9792b93f154b3939))
11+
- code optimize ([d5cc31d2](https://github.com/ymind/jacksync/commit/d5cc31d290caa8d783912fe8c0d8598d1930ef63))
12+
13+
14+
### Styles
15+
16+
- code cleanup ([a316d3fd](https://github.com/ymind/jacksync/commit/a316d3fdb3572820b6480d2bd6b613b1d4591f66))
17+
18+
19+
### Build System
20+
21+
- **gradle**: bumped gradle version to 8.5 ([399c122e](https://github.com/ymind/jacksync/commit/399c122e223a0f83db982f2fdde8ec4a6b8b534f))
22+
- **gradle:plugin**: bumped team.yi.semantic-gitlog version to 0.6.5 ([0a03d100](https://github.com/ymind/jacksync/commit/0a03d100c6b0365933afee6c1e640065f295172d))
23+
- **gradle:plugin**: bumped io.gitlab.arturbosch.detekt version to 1.23.1 ([797835bb](https://github.com/ymind/jacksync/commit/797835bbfd0df7bc22e56b0a32b664536dcaf43e))
24+
- **gradle:plugin**: bumped io.gitlab.arturbosch.detekt version to 1.23.4 ([1815e94a](https://github.com/ymind/jacksync/commit/1815e94a104990bfe5361d1efd70fbff050ac664))
25+
- **gradle:plugin**: bumped com.github.ben-manes.versions version to 0.51.0 ([68b704b7](https://github.com/ymind/jacksync/commit/68b704b7ce462151b35d74d9cb5e4d8d9908a995))
26+
- **kotlin**: bumped kotlin version to 1.9.22 ([c077bb78](https://github.com/ymind/jacksync/commit/c077bb783448525701ac0d4a169491471dfed73d))
27+
28+
329
## 0.8.0 (2023-07-13)
430

531
### Features

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.jacksync"
25-
version = "0.8.0"
25+
version = "0.8.11"
2626
description = "Jacksync provides a library for synchronization by producing and applying a JSON patches to Java objects. " +
2727
"Inspired by RFC 6902 (JSON Patch) and RFC 7386 (JSON Merge Patch) written in Java, which uses Jackson at its core."
2828

0 commit comments

Comments
 (0)