Skip to content

Commit

Permalink
Merge pull request #89 from guoshiqiufeng/release-please--branches--d…
Browse files Browse the repository at this point in the history
…ev--components--standard-version

chore(main): release 1.0.1
  • Loading branch information
guoshiqiufeng authored Mar 12, 2024
2 parents 90fb3f5 + 817e46e commit c32d4b8
Show file tree
Hide file tree
Showing 5 changed files with 56 additions and 16 deletions.
31 changes: 31 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,36 @@
# Changelog

## [1.0.1](https://github.com/guoshiqiufeng/loki/compare/v1.0.0...v1.0.1) (2024-03-11)


### 🐞 Bug Fixes

* Dependency optimization ([094514f](https://github.com/guoshiqiufeng/loki/commit/094514fd3e5a37f88f64475490ca35cf5798a277))


### 🔨 Dependency Upgrades

* Update hamcrest 2.2 ([545f35f](https://github.com/guoshiqiufeng/loki/commit/545f35fdb7c19c6e90a674f0b7417d3097c4d7d4))
* Update jedisVersion 5.1.2 ([e104c11](https://github.com/guoshiqiufeng/loki/commit/e104c1192bfe736cb15f45dd37da1ddc4394fcda))
* Update kafkaClients 5.7.0 ([e104c11](https://github.com/guoshiqiufeng/loki/commit/e104c1192bfe736cb15f45dd37da1ddc4394fcda))
* Update rocketMqClient 5.2.0 ([e104c11](https://github.com/guoshiqiufeng/loki/commit/e104c1192bfe736cb15f45dd37da1ddc4394fcda))
* Update spring 5.3.32 ([e277eec](https://github.com/guoshiqiufeng/loki/commit/e277eecc58f0cc88d3cef5e91a56faa0f9425111))

## [1.0.0](https://github.com/guoshiqiufeng/loki/compare/v0.9.0...v1.0.0)


### ⭐ New Features

* LokiClient support listener ([70975a4](https://github.com/guoshiqiufeng/loki/commit/70975a41a88569399fd14f2de1bc3a6bb7b2d686))


### 🔨 Dependency Upgrades

* Update gson to 2.10.1 ([872a873](https://github.com/guoshiqiufeng/loki/commit/872a8739c0cf8caea08de13a92280f8e21370150))
* Update rocketmq-client-java to 5.0.6 ([872a873](https://github.com/guoshiqiufeng/loki/commit/872a8739c0cf8caea08de13a92280f8e21370150))
* Update zstd-jni to 1.5.5-1 ([872a873](https://github.com/guoshiqiufeng/loki/commit/872a8739c0cf8caea08de13a92280f8e21370150))
* Update gradle to 8.6 ([bf9c0e8](https://github.com/guoshiqiufeng/loki/pull/84/commits/bf9c0e8c75d5442424b74b7ade9753f07ce79c8d))

## [1.0.0-M2](https://github.com/guoshiqiufeng/loki/compare/v0.9.0...v1.0.0-M2)


Expand Down
5 changes: 3 additions & 2 deletions README-zh.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,10 @@ https://guoshiqiufeng.github.io/loki-doc/
- Java 21
- Gradle 8.6
- Spring Boot 2.7.18
- rocketmq-client 5.2.0
- rocketmq-client-java 5.0.6 (RocketMQ-grpc)
- kafka-clients 3.6.1
- jedis 5.1.0
- kafka-clients 3.7.0
- jedis 5.1.2

### 功能

Expand Down
5 changes: 3 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,10 @@ https://guoshiqiufeng.github.io/loki-doc/en/
- Java 21
- Gradle 8.6
- Spring Boot 2.7.18
- rocketmq-client 5.2.0
- rocketmq-client-java 5.0.6 (RocketMQ-grpc)
- kafka-clients 3.6.1
- jedis 5.1.0
- kafka-clients 3.7.0
- jedis 5.1.2

### Features

Expand Down
29 changes: 18 additions & 11 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -13,16 +13,20 @@ ext {
libraries = [
springBootVersion = '2.7.18',
springBoot3Version = '3.2.1',
springVersion = '5.3.31',
rocketMqClientVersion = '5.1.4',
springVersion = '5.3.32',
rocketMqClientVersion = '5.2.0',
rocketMqClientJavaVersion = '5.0.6',
kafkaClientsVersion = '3.6.1',
jedisVersion = '5.1.0',
kafkaClientsVersion = '3.7.0',
jedisVersion = '5.1.2',
hutoolVersion = '5.8.25',
opentelemetryVersion = "1.31.0",
okhttpVersion = "4.12.0",
gsonVersion = "2.10.1",
slf4jVersion = "2.0.11"
slf4jVersion = "2.0.11",
fastjson2Version = "2.0.42",
guavaVersion = "33.0.0-jre",
logbackVersion = "1.4.14",
hamcrestVersion = "2.2",
]

lib = [
Expand All @@ -32,10 +36,11 @@ ext {
"rocketmq-client-java": "org.apache.rocketmq:rocketmq-client-java:${rocketMqClientJavaVersion}",
"jedis" : "redis.clients:jedis:${jedisVersion}",
"spring-context" : "org.springframework:spring-context:${springVersion}",
"fastjson2" : "com.alibaba.fastjson2:fastjson2:2.0.42",
"logback-classic" : "ch.qos.logback:logback-classic:1.4.14",
"fastjson2" : "com.alibaba.fastjson2:fastjson2:${fastjson2Version}",
"logback-classic" : "ch.qos.logback:logback-classic:${logbackVersion}",
"hutool-all" : "cn.hutool:hutool-all:${hutoolVersion}",
"guava" : "com.google.guava:guava:33.0.0-jre",
"guava" : "com.google.guava:guava:${guavaVersion}",
"gson" : "com.google.code.gson:gson:${gsonVersion}",
]
}

Expand Down Expand Up @@ -77,9 +82,11 @@ subprojects {
}
dependencies {
dependency("com.google.code.gson:gson:${gsonVersion}")
dependency("com.github.luben:zstd-jni:1.5.5-1")
dependency("ch.qos.logback:logback-core:1.4.14")
dependency("ch.qos.logback:logback-classic:1.4.14")
// dependency("com.github.luben:zstd-jni:1.5.5-1")
dependency("org.hamcrest:hamcrest:${hamcrestVersion}")
dependency("org.slf4j:slf4j-api:${slf4jVersion}")
dependency("ch.qos.logback:logback-core:${logbackVersion}")
dependency("ch.qos.logback:logback-classic:${logbackVersion}")
}
}
}
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# {x-release-please-start-version}
APP_VERSION=1.0.0
APP_VERSION=1.0.1
# {x-release-please-end-version}
APP_GROUP=io.github.guoshiqiufeng

0 comments on commit c32d4b8

Please sign in to comment.