Skip to content

Commit cb61c8a

Browse files
committed
release 2.0.1.0-2023.0.3.
1 parent 4612bb9 commit cb61c8a

File tree

6 files changed

+9
-4
lines changed

6 files changed

+9
-4
lines changed

.github/workflows/junit.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ on:
1010
- 2020
1111
- hoxton
1212
- greenwich
13+
- release/*
1314
pull_request:
1415
branches:
1516
- 2024
@@ -19,6 +20,7 @@ on:
1920
- 2020
2021
- hoxton
2122
- greenwich
23+
- release/*
2224

2325
jobs:
2426
set-jdks:

.github/workflows/license-checker.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ on:
1010
- 2020
1111
- hoxton
1212
- greenwich
13+
- release/*
1314
pull_request:
1415
branches:
1516
- 2024
@@ -19,6 +20,7 @@ on:
1920
- 2020
2021
- hoxton
2122
- greenwich
23+
- release/*
2224
jobs:
2325
check-license:
2426
runs-on: ubuntu-latest

.github/workflows/snapshot.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ on:
1010
- 2020
1111
- hoxton
1212
- greenwich
13+
- release/*
1314

1415
jobs:
1516
check-snapshot:

pom.xml

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

9191
<properties>
9292
<!-- Project revision -->
93-
<revision>2.0.1.0-2023.0.3-SNAPSHOT</revision>
93+
<revision>2.0.1.0-2023.0.3</revision>
9494

9595
<!-- Spring Framework -->
9696
<spring.framework.version>6.1.14</spring.framework.version>

spring-cloud-tencent-dependencies/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -71,10 +71,10 @@
7171

7272
<properties>
7373
<!-- Project revision -->
74-
<revision>2.0.1.0-2023.0.3-SNAPSHOT</revision>
74+
<revision>2.0.1.0-2023.0.3</revision>
7575

7676
<!-- Polaris SDK version -->
77-
<polaris.version>2.0.1.0-SNAPSHOT</polaris.version>
77+
<polaris.version>2.0.1.0</polaris.version>
7878

7979
<!-- Dependencies -->
8080
<springdoc.version>2.2.0</springdoc.version>

spring-cloud-tencent-examples/tsf-example/consumer-demo/src/main/java/com/tencent/cloud/tsf/demo/consumer/proxy/ProviderDemoService.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
import org.springframework.web.bind.annotation.RequestMethod;
2424
import org.springframework.web.bind.annotation.RequestParam;
2525

26-
@FeignClient(name = "provider-demo")
26+
@FeignClient(name = "${provider.name:provider-demo}")
2727
public interface ProviderDemoService {
2828
@RequestMapping(value = "/echo/{str}", method = RequestMethod.GET)
2929
String echo(@PathVariable("str") String str);

0 commit comments

Comments
 (0)