Skip to content

Commit 29dd8c7

Browse files
committed
[update]Upgrade version to 1.6.3
1 parent ae9514e commit 29dd8c7

File tree

34 files changed

+64
-60
lines changed

34 files changed

+64
-60
lines changed

core/client.pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<groupId>com.tencent.tars</groupId>
88
<artifactId>tars-parent</artifactId>
9-
<version>1.6.1</version>
9+
<version>1.6.2</version>
1010
</parent>
1111
<artifactId>tars-client</artifactId>
1212
<name>${project.artifactId}</name>

core/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<groupId>com.tencent.tars</groupId>
88
<artifactId>tars-parent</artifactId>
9-
<version>1.6.1</version>
9+
<version>1.6.2</version>
1010
</parent>
1111
<artifactId>tars-core</artifactId>
1212
<name>${project.artifactId}</name>

core/server.pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<groupId>com.tencent.tars</groupId>
88
<artifactId>tars-parent</artifactId>
9-
<version>1.6.1</version>
9+
<version>1.6.2</version>
1010
</parent>
1111
<artifactId>tars-server</artifactId>
1212
<name>${project.artifactId}</name>

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

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

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

2929
public String toString() {
3030
return getVersion();
3131
}
3232
}
33+
34+
35+
36+

distributedContext/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<groupId>com.tencent.tars</groupId>
88
<artifactId>tars-parent</artifactId>
9-
<version>1.6.1</version>
9+
<version>1.6.2</version>
1010
</parent>
1111

1212
<artifactId>tars-context</artifactId>

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.6.1</version>
51+
<version>1.6.2</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.6.1</version>
62+
<version>1.6.2</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.6.1</version>
105+
<version>1.6.2</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.6.1</version>
182+
<version>1.6.2</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.6.1</version>
193+
<version>1.6.2</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.6.1</version>
15+
<version>1.6.2</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.6.1</version>
24+
<version>1.6.2</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.6.1</version>
112+
<version>1.6.2</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.6.1</version>
24+
<version>1.6.2</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.6.1</version>
33+
<version>1.6.2</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.6.1</version>
68+
<version>1.6.2</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.6.1, 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.6.2, 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.6.1</version>
140+
> <version>1.6.2</version>
141141
> <exclusions>
142142
> <exclusion>
143143
> <groupId>org.apache.kafka</groupId>

0 commit comments

Comments
 (0)