Skip to content

Commit

Permalink
update version to 0.4.7
Browse files Browse the repository at this point in the history
  • Loading branch information
punk8 committed Apr 7, 2022
1 parent ea08515 commit bca32ac
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 9 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -24,3 +24,5 @@ dist
src/c/
src/main/resources/native
src/main/resources/xdag-mainnet.config

pool
2 changes: 1 addition & 1 deletion docs/XDAGJ_PrivateChain_Turial_zh.md
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@

```shell
cd pool
nohup java -jar xdagj-0.4.6-shaded.jar > xdagj.log 2>&1 &
nohup java -jar xdagj-0.4.7-shaded.jar > xdagj.log 2>&1 &
#等待系统启动完毕,采用telnet接入
telnet 127.0.0.1:6001
```
Expand Down
4 changes: 2 additions & 2 deletions docs/XDAGJ_Private_Chain_Tutorial_eng.md
Original file line number Diff line number Diff line change
Expand Up @@ -53,8 +53,8 @@
```shell
$mkdir run

#Please copy xdag-testnet.config, xdag.sh & xdagj-0.4.6-shaded.jar into /run
# xdag-testnet.config is in /src-main-resources; xdag.sh is in /script; xdagj-0.4.6-shaded.jar is in /target
#Please copy xdag-testnet.config, xdag.sh & xdagj-0.4.7-shaded.jar into /run
# xdag-testnet.config is in /src-main-resources; xdag.sh is in /script; xdagj-0.4.7-shaded.jar is in /target

$cd run
$sh xdag.sh -t
Expand Down
10 changes: 5 additions & 5 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

<groupId>io.xdag</groupId>
<artifactId>xdagj</artifactId>
<version>0.4.6</version>
<version>0.4.7</version>

<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
Expand Down Expand Up @@ -279,7 +279,7 @@
<copy file="src/main/resources/xdag-testnet.config"
tofile="${dist.base}/windows/xdag-testnet.config"/>
<copy file="src/main/resources/xdag-devnet.config"
tofile="${dist.base}/windows/xdag-devnet.config"/>
tofile="${dist.base}/windows/xdag-devnet.config"/>
<copy file="${project.basedir}/script/xdag.bat"
tofile="${dist.base}/windows/xdag.bat"/>
<zip basedir="${dist.base}/windows/"
Expand All @@ -296,7 +296,7 @@
<copy file="src/main/resources/xdag-testnet.config"
tofile="${dist.base}/linux/xdag-testnet.config"/>
<copy file="src/main/resources/xdag-devnet.config"
tofile="${dist.base}/linux/xdag-devnet.config"/>
tofile="${dist.base}/linux/xdag-devnet.config"/>
<copy file="${project.basedir}/script/xdag.sh"
tofile="${dist.base}/linux/xdag.sh"/>
<chmod file="${dist.base}/linux/xdag.sh" perm="755"/>
Expand All @@ -314,7 +314,7 @@
<copy file="src/main/resources/xdag-testnet.config"
tofile="${dist.base}/macos/xdag-testnet.config"/>
<copy file="src/main/resources/xdag-devnet.config"
tofile="${dist.base}/macos/xdag-devnet.config"/>
tofile="${dist.base}/macos/xdag-devnet.config"/>
<copy file="${project.basedir}/script/xdag.sh"
tofile="${dist.base}/macos/xdag.sh"/>
<chmod file="${dist.base}/macos/xdag.sh" perm="755"/>
Expand Down Expand Up @@ -801,7 +801,7 @@
<dependency>
<groupId>tech.pegasys.discovery</groupId>
<artifactId>discovery</artifactId>
<version>0.4.6</version>
<version>0.4.7</version>
<exclusions>
<exclusion>
<artifactId>log4j-api</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/io/xdag/config/Constants.java
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ public class Constants {

public static final String WALLET_FILE_NAME = "wallet.data";

public static final String CLIENT_VERSION = "0.4.6";
public static final String CLIENT_VERSION = "0.4.7";

/**
* 同步问题 分叉高度
Expand Down

0 comments on commit bca32ac

Please sign in to comment.