Skip to content

Commit 7e11325

Browse files
committed
prepare the v3.0.7
1 parent 33b34fc commit 7e11325

File tree

5 files changed

+11
-10
lines changed

5 files changed

+11
-10
lines changed

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ set( CXX_STANDARD_REQUIRED ON)
3131

3232
set(VERSION_MAJOR 3)
3333
set(VERSION_MINOR 0)
34-
set(VERSION_PATCH 6)
34+
set(VERSION_PATCH 7)
3535

3636
if(VERSION_SUFFIX)
3737
set(VERSION_FULL "${VERSION_MAJOR}.${VERSION_MINOR}.${VERSION_PATCH}-${VERSION_SUFFIX}")

Docker/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,10 +20,10 @@ cd bos/Docker
2020
docker build . -t boscore/bos -s BOS
2121
```
2222

23-
The above will build off the most recent commit to the master branch by default. If you would like to target a specific branch/tag, you may use a build argument. For example, if you wished to generate a docker image based off of the v3.0.6 tag, you could do the following:
23+
The above will build off the most recent commit to the master branch by default. If you would like to target a specific branch/tag, you may use a build argument. For example, if you wished to generate a docker image based off of the v3.0.7 tag, you could do the following:
2424

2525
```bash
26-
docker build -t boscore/bos:v3.0.6 --build-arg branch=v3.0.6 .
26+
docker build -t boscore/bos:v3.0.7 --build-arg branch=v3.0.7 .
2727

2828
```
2929

Docker/builder/Dockerfile

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
12
FROM ubuntu:18.04
23

34
LABEL author="xiaobo <[email protected]>" maintainer="Xiaobo <[email protected]> Huang-Ming Huang <[email protected]> Winlin <[email protected]>" version="0.1.2" \
@@ -12,8 +13,8 @@ RUN echo "deb http://apt.llvm.org/bionic/ llvm-toolchain-bionic main" >> /etc/ap
1213
&& wget -O - https://apt.llvm.org/llvm-snapshot.gpg.key|sudo apt-key add - \
1314
&& apt-get update \
1415
&& DEBIAN_FRONTEND=noninteractive apt-get install -y git-core automake autoconf libtool build-essential pkg-config libtool \
15-
mpi-default-dev libicu-dev python-dev python3-dev libbz2-dev zlib1g-dev libssl-dev libgmp-dev \
16-
clang-7 lld-4.0 llvm-7-dev libclang-4.0-dev ninja-build libusb-1.0-0-dev curl libcurl4-gnutls-dev \
16+
mpi-default-dev libicu-dev python-dev python3-dev libbz2-dev zlib1g-dev libssl-dev libgmp-dev doxygen graphviz libgmp3-dev \
17+
clang-7 lld-4.0 llvm-7-dev libclang-4.0-dev ninja-build libusb-1.0-0-dev curl libcurl4-gnutls-dev autotools-dev ruby \
1718
&& rm -rf /var/lib/apt/lists/*
1819

1920
RUN update-alternatives --install /usr/bin/clang clang /usr/lib/llvm-7/bin/clang 700 \
@@ -70,4 +71,4 @@ RUN git clone --depth 1 -b 0.2 https://github.com/boscore/cppkafka.git \
7071
&& mkdir build && cd build \
7172
&& cmake -DCPPKAFKA_RDKAFKA_STATIC_LIB=1 -DCPPKAFKA_BUILD_SHARED=0 .. \
7273
&& make install \
73-
&& cd ../../ && rm -rf cppkafka
74+
&& cd ../../ && rm -rf cppkafka

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# BOSCore - Blockchain financial center building a trusted business ecosystem.
22

3-
## BOSCore Version: v3.0.6
4-
### Basic EOSIO Version: v1.6.6 (support REX, part 2.0.x)
3+
## BOSCore Version: v3.0.7
4+
### Basic EOSIO Version: v1.6.6 (support REX & EOSVM, part 2.0.x)
55

66
# Background
77
The emergence of EOS has brought new imagination to the blockchain. In just a few months since the main network was launched, the version has undergone dozens of upgrades, not only the stability has been greatly improved, but also the new functions have been gradually realized. The node team is also actively involved in building the EOSIO ecosystem. What is even more exciting is that EOS has attracted more and more development teams. There are already hundreds of DApp running on the EOS main network. The transaction volume and circulation market value far exceed Ethereum, and the space for development is growing broader.

README_CN.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# BOSCore - 区块链自由港,构建可信商业生态。
22

3-
## BOSCore Version: v3.0.6
4-
### Basic EOSIO Version: v1.6.6 (support REX, part 2.0.x)
3+
## BOSCore Version: v3.0.7
4+
### Basic EOSIO Version: v1.6.6 (support REX & EOSVM, part 2.0.x)
55

66
# 背景
77
EOS的出现给区块链带来了新的想象力,主网启动短短几个月以来,版本经历了几十次升级,不仅稳定性得到了很大提高,并且新功能也逐步实现,各个节点团队也积极参与建设EOSIO生态。让人更加兴奋的是,EOS已经吸引了越来越多的开发团队,当前已经有数百个DApp在EOS主网上面运行,其交易量和流通市值远超以太坊,可发展的空间愈来愈广阔。

0 commit comments

Comments
 (0)