Skip to content

Commit 0b132fa

Browse files
committed
🔖 3.2.0
1 parent 672e17e commit 0b132fa

File tree

5 files changed

+44
-3
lines changed

5 files changed

+44
-3
lines changed

.github/renovate.json

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
{
2+
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
3+
"baseBranches": ["jdk17-dev", "boot-dev"],
4+
"extends": [
5+
"config:recommended"
6+
]
7+
}
Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
name: publish github release
2+
3+
on:
4+
workflow_dispatch:
5+
inputs:
6+
releaseversion:
7+
description: 'Release version'
8+
required: true
9+
default: '3.7.0'
10+
11+
jobs:
12+
publish-github-release:
13+
runs-on: ubuntu-latest
14+
steps:
15+
- uses: actions/checkout@v4
16+
- name: Generate changelog
17+
id: changelog
18+
uses: metcalfc/[email protected]
19+
with:
20+
myToken: ${{ secrets.GH_TOKEN }}
21+
22+
- name: Create GitHub Release
23+
id: create_release
24+
uses: actions/create-release@v1
25+
env:
26+
GITHUB_TOKEN: ${{ secrets.GH_TOKEN }}
27+
with:
28+
tag_name: ${{ github.event.inputs.releaseversion }}
29+
release_name: ${{ github.event.inputs.releaseversion }}
30+
body: |
31+
### Things that changed in this release
32+
${{ steps.changelog.outputs.changelog }}
33+
draft: false
34+
prerelease: ${{ contains(github.event.inputs.releaseversion, '-') }}

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,8 @@
4040

4141
### 配置应用
4242

43+
<img src='https://minio.pigx.top/oss/202403/1709779710.png' alt='1709779710'/>
44+
4345
这里以3个微服务来举例子。
4446

4547
1. `log-trace-gateway-demo` 充当网关功能

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
<groupId>com.pig4cloud.plugin</groupId>
66
<artifactId>log-trace-spring-boot3-starter</artifactId>
7-
<version>3.2.0-SNAPSHOT</version>
7+
<version>3.2.0</version>
88
<packaging>jar</packaging>
99

1010
<name>log-trace-spring-boot-starter</name>

src/main/resources/META-INF/spring/org.springframework.boot.autoconfigure.AutoConfiguration.imports

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,4 @@ com.pig4cloud.trace.instrument.servlet.TraceServletConfiguration
33
com.pig4cloud.trace.instrument.reactive.TraceReactiveConfiguration
44
com.pig4cloud.trace.instrument.gateway.TraceGatewayAutoConfiguration
55
com.pig4cloud.trace.instrument.feign.TraceFeignClientAutoConfiguration
6-
com.pig4cloud.trace.instrument.zuul.TraceZuulAutoConfiguration
76
com.pig4cloud.trace.instrument.resttemplate.TraceRestTemplateConfiguration
8-
com.pig4cloud.trace.instrument.dubbo.TraceDubboConfiguration

0 commit comments

Comments
 (0)