Skip to content

Commit 4843cea

Browse files
committed
re
2 parents a812bc7 + a0cc794 commit 4843cea

File tree

11 files changed

+17
-17
lines changed

11 files changed

+17
-17
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,8 @@ Distributed Configuration Management Platform(分布式配置管理平台)
2424

2525
disconf.git branches and Maven version:
2626

27-
- dev(develop branch): 2.6.26-SNAPSHOT
28-
- master(stable branch):2.6.26
27+
- dev(develop branch): 2.6.27-SNAPSHOT
28+
- master(stable branch):2.6.27
2929
- [更新日志](https://github.com/knightliao/disconf/wiki/updates)
3030

3131
在Maven Central Repository里查看 [com.baidu.disconf](http://search.maven.org/#search%7Cga%7C1%7Cg%3A%22com.baidu.disconf%22 )
@@ -40,7 +40,7 @@ disconf.git branches and Maven version:
4040

4141
[查看大图](http://ww1.sinaimg.cn/mw1024/60c9620fgw1eu5ltt9uglj20ia0j0tbo.jpg)
4242

43-
### 当前版本(2.6.26)功能特点 ##
43+
### 当前版本(2.6.27)功能特点 ##
4444

4545
- **支持配置(配置项+配置文件)的分布式化管理**
4646
- **配置发布统一化**
@@ -121,7 +121,7 @@ Disconf为应用方提供了三个工具,
121121
<dependency>
122122
<groupId>com.baidu.disconf</groupId>
123123
<artifactId>disconf-client</artifactId>
124-
<version>2.6.26</version>
124+
<version>2.6.27</version>
125125
</dependency>
126126

127127
### disconf-web 使用 ###

disconf-client/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
<parent>
1111
<groupId>com.baidu.disconf</groupId>
1212
<artifactId>disconf-base</artifactId>
13-
<version>2.6.26</version>
13+
<version>2.6.27</version>
1414
<relativePath>../</relativePath>
1515
</parent>
1616

disconf-client/src/main/java/com/baidu/disconf/client/DisconfMgrBean.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ public void setScanPackage(String scanPackage) {
6262

6363
@Override
6464
public int getOrder() {
65-
return Ordered.HIGHEST_PRECEDENCE;
65+
return Ordered.HIGHEST_PRECEDENCE + 1;
6666
}
6767

6868
/**

disconf-core/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
<groupId>com.baidu.disconf</groupId>
1515
<artifactId>disconf-base</artifactId>
1616
<relativePath>../</relativePath>
17-
<version>2.6.26</version>
17+
<version>2.6.27</version>
1818
</parent>
1919

2020
<licenses>

disconf-demos/disconf-spring-boot-demo/disconf-spring-boot-core/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
<dependency>
3333
<groupId>com.baidu.disconf</groupId>
3434
<artifactId>disconf-client</artifactId>
35-
<version>2.6.26</version>
35+
<version>2.6.27</version>
3636
<exclusions>
3737
<exclusion>
3838
<groupId>ch.qos.logback</groupId>

disconf-demos/disconf-standalone-demo/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
<dependency>
1212
<groupId>com.baidu.disconf</groupId>
1313
<artifactId>disconf-client</artifactId>
14-
<version>2.6.26</version>
14+
<version>2.6.27</version>
1515
</dependency>
1616

1717
<dependency>

disconf-demos/disconf-standalone-dubbo-demo/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
<dependency>
1212
<groupId>com.baidu.disconf</groupId>
1313
<artifactId>disconf-client</artifactId>
14-
<version>2.6.26</version>
14+
<version>2.6.27</version>
1515
</dependency>
1616

1717
<dependency>

disconf-tool/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<parent>
55
<groupId>com.baidu.disconf</groupId>
66
<artifactId>disconf-base</artifactId>
7-
<version>2.6.26</version>
7+
<version>2.6.27</version>
88
</parent>
99
<artifactId>disconf-tool</artifactId>
1010
<version>${disconf-tool.version}</version>

disconf-web/html/assets/js/newconfigfile.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -243,7 +243,7 @@ $("#uploadChoice").on(
243243
"envId": envId,
244244
"version": version,
245245
"fileContent": fileContent,
246-
"fileName": fileName,
246+
"fileName": fileName
247247
}
248248
}).done(function (data) {
249249
$("#error").removeClass("hide");

disconf-web/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
<parent>
1313
<groupId>com.baidu.disconf</groupId>
1414
<artifactId>disconf-base</artifactId>
15-
<version>2.6.26</version>
15+
<version>2.6.27</version>
1616
<relativePath>../</relativePath>
1717
</parent>
1818

0 commit comments

Comments
 (0)