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

+1-1
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

+1-1
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

+1-1
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

+5-5
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

+1-1
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

+2-2
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

+3-3
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

+2-2
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

+5-5
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

+1-1
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

docs/tars_java_spring_boot.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ demo工程参考[demo工程](https://github.com/TarsCloud/TarsJava/tree/master/e
3131
<dependency>
3232
<groupId>com.tencent.tars</groupId>
3333
<artifactId>tars-spring-boot-starter</artifactId>
34-
<version>1.7.3</version>
34+
<version>1.7.4</version>
3535
</dependency>
3636
</dependencies>
3737
```

docs/tars_java_spring_cloud.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
<dependency>
2323
<groupId>com.tencent.tars</groupId>
2424
<artifactId>tars-spring-cloud-starter</artifactId>
25-
<version> 1.7.3</version>
25+
<version> 1.7.4</version>
2626
</dependency>
2727
```
2828

@@ -110,7 +110,7 @@ tars:
110110
<dependency>
111111
<groupId>com.tencent.tars</groupId>
112112
<artifactId>tars-spring-cloud-starter</artifactId>
113-
<version>1.7.3</version>
113+
<version>1.7.4</version>
114114
</dependency>
115115
```
116116

docs/tars_java_user_guide.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
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 @@
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 @@ module TestApp
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文件位置 -->

docs/tars_tracing.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ tars框架内部采用opentracing api来封装调用链数据采集功能,并
9292

9393
## tars-java 使用方法
9494

95-
目前tars -java从 1.7.3版本开始支持调用链,cpp 版本即将放出,下面以集成zipkin为例介绍。
95+
目前tars -java从 1.7.4版本开始支持调用链,cpp 版本即将放出,下面以集成zipkin为例介绍。
9696

9797
### 开启调用链
9898

@@ -136,7 +136,7 @@ tars框架内部采用opentracing api来封装调用链数据采集功能,并
136136
> <dependency>
137137
> <groupId>com.tencent.tars</groupId>
138138
> <artifactId>tars-core</artifactId>
139-
> <version> 1.7.3</version>
139+
> <version> 1.7.4</version>
140140
> <exclusions>
141141
> <exclusion>
142142
> <groupId>org.apache.kafka</groupId>

examples/quickstart-server/src/main/java/com/qq/tars/quickstart/server/testapp/HelloServant.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// **********************************************************************
22
// This file was generated by a TARS parser!
3-
// TARS version 1.7.3.
3+
// TARS version 1.7.4.
44
// **********************************************************************
55

66
package com.qq.tars.quickstart.server.testapp;

examples/tars-spring-boot-server/src/main/java/com/qq/tars/quickstart/server/testapp/HelloServant.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// **********************************************************************
22
// This file was generated by a TARS parser!
3-
// TARS version 1.7.3.
3+
// TARS version 1.7.4.
44
// **********************************************************************
55

66
package com.qq.tars.quickstart.server.testapp;

examples/tars-spring-cloud-server/src/main/java/com/qq/tars/springcloud/test/server/HelloServant.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// **********************************************************************
22
// This file was generated by a TARS parser!
3-
// TARS version 1.7.3.
3+
// TARS version 1.7.4.
44
// **********************************************************************
55

66
package com.qq.tars.springcloud.test.server;

examples/tars-spring-server/src/main/java/com/qq/tars/quickstart/server/testapp/HelloServant.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// **********************************************************************
22
// This file was generated by a TARS parser!
3-
// TARS version 1.7.3.
3+
// TARS version 1.7.4.
44
// **********************************************************************
55

66
package com.qq.tars.quickstart.server.testapp;

pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@
5050
</modules>
5151

5252
<properties>
53-
<revision>1.7.3</revision>
53+
<revision>1.7.4</revision>
5454
<java_source_version>1.8</java_source_version>
5555
<java_target_version>1.8</java_target_version>
5656
<file_encoding>UTF-8</file_encoding>

protobuf/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<dependency>
77
<groupId>com.tencent.tars</groupId>
88
<artifactId>tars-protobuf</artifactId>
9-
<version>1.7.3</version>
9+
<version>1.7.4</version>
1010
</dependency>
1111
```
1212
然后使用java-protobuf-plugin插件配合pb生成代码,详细使用方式参见

tools/tars-maven-plugin/src/main/java/com/qq/tars/maven/gensrc/Tars2JavaMojo.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -166,7 +166,7 @@ private void genJava(String nsName, List<TarsNamespace> namespaces, Map<String,
166166
private void printHead(PrintWriter out) {
167167
out.println("// **********************************************************************");
168168
out.println("// This file was generated by a TARS parser!");
169-
out.println("// TARS version 1.7.3.");
169+
out.println("// TARS version 1.7.4.");
170170
out.println("// **********************************************************************");
171171
out.println();
172172
}

0 commit comments

Comments
 (0)