Skip to content

Commit 6e7b003

Browse files
committed
[update]update framework version to 1.7.4
1 parent 87121ab commit 6e7b003

File tree

21 files changed

+37
-37
lines changed

21 files changed

+37
-37
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ The following configuration needs to be added in pom.xml:
113113
<dependency>
114114
<groupId>com.tencent.tars</groupId>
115115
<artifactId>tars-spring-boot-starter</artifactId>
116-
<version>1.7.3</version>
116+
<version>1.7.4</version>
117117
</dependency>
118118
</dependencies>
119119
```

core/src/main/java/com/qq/tars/common/ClientVersion.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ public final class ClientVersion {
2323
// public static final String build = "1";
2424

2525
public static String getVersion() {
26-
return "1.7.3";
26+
return "1.7.4";
2727
}
2828

2929
public String toString() {

docs-en/tars-http-server.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ The following configuration needs to be added in pom.xml:
5656
<dependency>
5757
<groupId>com.tencent.tars</groupId>
5858
<artifactId>tars-spring-boot-starter</artifactId>
59-
<version>1.7.3</version>
59+
<version>1.7.4</version>
6060
</dependency>
6161
</dependencies>
6262
```

docs-en/tars_java_quickstart.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ Add a dependency jar package by modifying pom.xml
4848
<dependency>
4949
<groupId>com.tencent.tars</groupId>
5050
<artifactId>tars-server</artifactId>
51-
<version>1.7.3</version>
51+
<version>1.7.4</version>
5252
<type>jar</type>
5353
</dependency>
5454
```
@@ -59,7 +59,7 @@ Add a dependency jar package by modifying pom.xml
5959
<plugin>
6060
<groupId>com.tencent.tars</groupId>
6161
<artifactId>tars-maven-plugin</artifactId>
62-
<version>1.7.3</version>
62+
<version>1.7.4</version>
6363
<configuration>
6464
<tars2JavaConfig>
6565
<tarsFiles>
@@ -102,7 +102,7 @@ Tars provides plugins to compile and generate java code, only need to add java f
102102
<plugin>
103103
<groupId>com.tencent.tars</groupId>
104104
<artifactId>tars-maven-plugin</artifactId>
105-
<version> 1.7.3</version>
105+
<version> 1.7.4</version>
106106
<configuration>
107107
<tars2JavaConfig>
108108
<!-- tars file location -->
@@ -179,7 +179,7 @@ Execute "mvn package" in the project root directory to generate the war package,
179179
<dependency>
180180
<groupId>com.tencent.tars</groupId>
181181
<artifactId>tars-client</artifactId>
182-
<version> 1.7.3</version>
182+
<version> 1.7.4</version>
183183
<type>jar</type>
184184
</dependency>
185185
```
@@ -190,7 +190,7 @@ Execute "mvn package" in the project root directory to generate the war package,
190190
<plugin>
191191
<groupId>com.tencent.tars</groupId>
192192
<artifactId>tars-maven-plugin</artifactId>
193-
<version> 1.7.3</version>
193+
<version> 1.7.4</version>
194194
<configuration>
195195
<tars2JavaConfig>
196196
<!-- tars file location -->

docs-en/tars_java_spring.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ Using this function requires adding a dependency jar package and adding the foll
1212
<dependency>
1313
<groupId>com.tencent.tars</groupId>
1414
<artifactId>tars-spring</artifactId>
15-
<version> 1.7.3</version>
15+
<version> 1.7.4</version>
1616
</dependency>
1717
```
1818

docs-en/tars_java_spring_cloud.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ Here are the steps to create and publish a service:
2121
<dependency>
2222
<groupId>com.tencent.tars</groupId>
2323
<artifactId>tars-spring-cloud-starter</artifactId>
24-
<version> 1.7.3</version>
24+
<version> 1.7.4</version>
2525
</dependency>
2626
```
2727

@@ -109,7 +109,7 @@ Here's how to discover and access a service.
109109
<dependency>
110110
<groupId>com.tencent.tars</groupId>
111111
<artifactId>tars-spring-cloud-starter</artifactId>
112-
<version> 1.7.3</version>
112+
<version> 1.7.4</version>
113113
</dependency>
114114
```
115115

docs-en/tars_java_user_guide.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ Add dependent jar packages in the build project **pom.xml**
2121
<dependency>
2222
<groupId>com.tencent.tars</groupId>
2323
<artifactId>tars-server</artifactId>
24-
<version> 1.7.3</version>
24+
<version> 1.7.4</version>
2525
<type>jar</type>
2626
</dependency>
2727
```
@@ -30,7 +30,7 @@ Add dependent jar packages in the build project **pom.xml**
3030
<plugin>
3131
<groupId>com.tencent.tars</groupId>
3232
<artifactId>tars-maven-plugin</artifactId>
33-
<version> 1.7.3</version>
33+
<version> 1.7.4</version>
3434
<configuration>
3535
<tars2JavaConfig>
3636
<tarsFiles>
@@ -65,7 +65,7 @@ Provide plug-in compile to generate java code, add java file configuration in ta
6565
<plugin>
6666
<groupId>com.tencent.tars</groupId>
6767
<artifactId>tars-maven-plugin</artifactId>
68-
<version> 1.7.3</version>
68+
<version> 1.7.4</version>
6969
<configuration>
7070
<tars2JavaConfig>
7171
<!-- Tars file location -->

docs-en/tars_tracing.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ The integrated zipkin system is built in the framework, users can query call cha
9393

9494
## Tars-java Usage
9595

96-
At present, tars-java supports the call chain from version 1.7.3, and the cpp version is about to be released. The following is an example of integrated zipkin.
96+
At present, tars-java supports the call chain from version 1.7.4, and the cpp version is about to be released. The following is an example of integrated zipkin.
9797

9898
### Enable the call chain
9999

@@ -137,7 +137,7 @@ Notes:
137137
> <dependency>
138138
> <groupId>com.tencent.tars</groupId>
139139
> <artifactId>tars-core</artifactId>
140-
> <version> 1.7.3</version>
140+
> <version> 1.7.4</version>
141141
> <exclusions>
142142
> <exclusion>
143143
> <groupId>org.apache.kafka</groupId>

docs/tars_java_quickstart.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@
4646
<dependency>
4747
<groupId>com.tencent.tars</groupId>
4848
<artifactId>tars-server</artifactId>
49-
<version> 1.7.3</version>
49+
<version> 1.7.4</version>
5050
<type>jar</type>
5151
</dependency>
5252
```
@@ -55,7 +55,7 @@
5555
<plugin>
5656
<groupId>com.tencent.tars</groupId>
5757
<artifactId>tars-maven-plugin</artifactId>
58-
<version> 1.7.3</version>
58+
<version> 1.7.4</version>
5959
<configuration>
6060
<tars2JavaConfig>
6161
<tarsFiles>
@@ -91,7 +91,7 @@ module TestApp
9191
<plugin>
9292
<groupId>com.tencent.tars</groupId>
9393
<artifactId>tars-maven-plugin</artifactId>
94-
<version> 1.7.3</version>
94+
<version> 1.7.4</version>
9595
<configuration>
9696
<tars2JavaConfig>
9797
<!-- tars文件位置 -->
@@ -159,7 +159,7 @@ public class HelloServantImpl implements HelloServant {
159159
<dependency>
160160
<groupId>com.tencent.tars</groupId>
161161
<artifactId>tars-client</artifactId>
162-
<version> 1.7.3</version>
162+
<version> 1.7.4</version>
163163
<type>jar</type>
164164
</dependency>
165165
```
@@ -168,7 +168,7 @@ public class HelloServantImpl implements HelloServant {
168168
<plugin>
169169
<groupId>com.tencent.tars</groupId>
170170
<artifactId>tars-maven-plugin</artifactId>
171-
<version> 1.7.3</version>
171+
<version> 1.7.4</version>
172172
<configuration>
173173
<tars2JavaConfig>
174174
<!-- tars文件位置 -->

docs/tars_java_spring.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ Tars支持使用Spring配置servant,使用此功能需要依赖tars-spring.jar
1212
<dependency>
1313
<groupId>com.tencent.tars</groupId>
1414
<artifactId>tars-spring</artifactId>
15-
<version> 1.7.3</version>
15+
<version> 1.7.4</version>
1616
</dependency>
1717
```
1818

0 commit comments

Comments
 (0)