From f1987688464148f80230b22508d00dfb43a6b3a0 Mon Sep 17 00:00:00 2001 From: Bart Wyatt Date: Tue, 16 Oct 2018 17:39:02 -0400 Subject: [PATCH] bump version to 1.4.0 --- CMakeLists.txt | 4 ++-- Docker/README.md | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index f2246490155..3ec2ba0d0bc 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -26,8 +26,8 @@ set( CMAKE_CXX_EXTENSIONS ON ) set( CXX_STANDARD_REQUIRED ON) set(VERSION_MAJOR 1) -set(VERSION_MINOR 3) -set(VERSION_PATCH 2) +set(VERSION_MINOR 4) +set(VERSION_PATCH 0) set( CLI_CLIENT_EXECUTABLE_NAME cleos ) set( NODE_EXECUTABLE_NAME nodeos ) diff --git a/Docker/README.md b/Docker/README.md index 55982cc7ee4..ae6c0add6fd 100644 --- a/Docker/README.md +++ b/Docker/README.md @@ -20,10 +20,10 @@ cd eos/Docker docker build . -t eosio/eos ``` -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 v1.3.2 tag, you could do the following: +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 v1.4.0 tag, you could do the following: ```bash -docker build -t eosio/eos:v1.3.2 --build-arg branch=v1.3.2 . +docker build -t eosio/eos:v1.4.0 --build-arg branch=v1.4.0 . ``` By default, the symbol in eosio.system is set to SYS. You can override this using the symbol argument while building the docker image.