Skip to content

Commit 429df68

Browse files
Merge pull request #99 from guoshiqiufeng/release-please--branches--dev--components--standard-version
chore(main): release 1.1.1
2 parents eefe32f + 089a803 commit 429df68

File tree

4 files changed

+50
-40
lines changed

4 files changed

+50
-40
lines changed

CHANGELOG.md

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

3+
## [1.1.1](https://github.com/guoshiqiufeng/loki/compare/v1.1.0...v1.1.1) (2024-03-26)
4+
5+
6+
### 🔨 Dependency Upgrades
7+
8+
* Update hutool 5.8.26 ([e52f4cd](https://github.com/guoshiqiufeng/loki/commit/e52f4cd122a8ed548ab3ed206c50e95d1463046f))
9+
* Update spring 5.3.33 ([e52f4cd](https://github.com/guoshiqiufeng/loki/commit/e52f4cd122a8ed548ab3ed206c50e95d1463046f))
10+
311
## [1.1.0](https://github.com/guoshiqiufeng/loki/compare/v1.0.1...v1.1.0) (2024-03-19)
412

513

build.gradle

Lines changed: 1 addition & 39 deletions
Original file line numberDiff line numberDiff line change
@@ -5,45 +5,7 @@ allprojects {
55
version APP_VERSION
66
}
77

8-
ext {
9-
configuration = [
10-
javaVersion = JavaVersion.VERSION_21
11-
]
12-
13-
libraries = [
14-
springBootVersion = '2.7.18',
15-
springBoot3Version = '3.2.1',
16-
springVersion = '5.3.32',
17-
rocketMqClientVersion = '5.2.0',
18-
rocketMqClientJavaVersion = '5.0.6',
19-
kafkaClientsVersion = '3.7.0',
20-
jedisVersion = '5.1.2',
21-
hutoolVersion = '5.8.25',
22-
opentelemetryVersion = "1.31.0",
23-
okhttpVersion = "4.12.0",
24-
gsonVersion = "2.10.1",
25-
slf4jVersion = "2.0.11",
26-
fastjson2Version = "2.0.42",
27-
guavaVersion = "33.0.0-jre",
28-
logbackVersion = "1.4.14",
29-
hamcrestVersion = "2.2",
30-
zstdJniVersion = "1.5.5-1",
31-
]
32-
33-
lib = [
34-
"slf4j-api" : "org.slf4j:slf4j-api:${slf4jVersion}",
35-
"kafka-clients" : "org.apache.kafka:kafka-clients:${kafkaClientsVersion}",
36-
"rocketmq-client" : "org.apache.rocketmq:rocketmq-client:${rocketMqClientVersion}",
37-
"rocketmq-client-java": "org.apache.rocketmq:rocketmq-client-java:${rocketMqClientJavaVersion}",
38-
"jedis" : "redis.clients:jedis:${jedisVersion}",
39-
"spring-context" : "org.springframework:spring-context:${springVersion}",
40-
"fastjson2" : "com.alibaba.fastjson2:fastjson2:${fastjson2Version}",
41-
"logback-classic" : "ch.qos.logback:logback-classic:${logbackVersion}",
42-
"hutool-all" : "cn.hutool:hutool-all:${hutoolVersion}",
43-
"guava" : "com.google.guava:guava:${guavaVersion}",
44-
"gson" : "com.google.code.gson:gson:${gsonVersion}",
45-
]
46-
}
8+
apply from: 'ext.gradle'
479

4810
description = "Simplifying mq usage"
4911

ext.gradle

Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
ext {
2+
configuration = [
3+
javaVersion = JavaVersion.VERSION_21
4+
]
5+
6+
libraries = [
7+
springBootVersion = '2.7.18',
8+
springBoot3Version = '3.2.1',
9+
springVersion = '5.3.33',
10+
rocketMqClientVersion = '5.2.0',
11+
rocketMqClientJavaVersion = '5.0.6',
12+
kafkaClientsVersion = '3.7.0',
13+
jedisVersion = '5.1.2',
14+
hutoolVersion = '5.8.26',
15+
opentelemetryVersion = "1.31.0",
16+
okhttpVersion = "4.12.0",
17+
gsonVersion = "2.10.1",
18+
slf4jVersion = "2.0.11",
19+
fastjson2Version = "2.0.42",
20+
guavaVersion = "33.0.0-jre",
21+
logbackVersion = "1.4.14",
22+
hamcrestVersion = "2.2",
23+
zstdJniVersion = "1.5.5-1",
24+
junitVersion = "4.13.2",
25+
]
26+
27+
lib = [
28+
"slf4j-api" : "org.slf4j:slf4j-api:${slf4jVersion}",
29+
"kafka-clients" : "org.apache.kafka:kafka-clients:${kafkaClientsVersion}",
30+
"rocketmq-client" : "org.apache.rocketmq:rocketmq-client:${rocketMqClientVersion}",
31+
"rocketmq-client-java": "org.apache.rocketmq:rocketmq-client-java:${rocketMqClientJavaVersion}",
32+
"jedis" : "redis.clients:jedis:${jedisVersion}",
33+
"spring-context" : "org.springframework:spring-context:${springVersion}",
34+
"fastjson2" : "com.alibaba.fastjson2:fastjson2:${fastjson2Version}",
35+
"logback-classic" : "ch.qos.logback:logback-classic:${logbackVersion}",
36+
"hutool-all" : "cn.hutool:hutool-all:${hutoolVersion}",
37+
"guava" : "com.google.guava:guava:${guavaVersion}",
38+
"gson" : "com.google.code.gson:gson:${gsonVersion}",
39+
]
40+
}

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
# {x-release-please-start-version}
2-
APP_VERSION=1.1.0
2+
APP_VERSION=1.1.1
33
# {x-release-please-end-version}
44
APP_GROUP=io.github.guoshiqiufeng

0 commit comments

Comments
 (0)