From ef8322cbe181da31ffdcb31a5d88528b4fe2b2ee Mon Sep 17 00:00:00 2001 From: Bart Wyatt Date: Tue, 14 Aug 2018 18:50:25 -0400 Subject: [PATCH] bump version to 1.1.5 --- CMakeLists.txt | 2 +- Docker/README.md | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 29afb6373b3..3222b53b509 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -27,7 +27,7 @@ set( CXX_STANDARD_REQUIRED ON) set(VERSION_MAJOR 1) set(VERSION_MINOR 1) -set(VERSION_PATCH 4) +set(VERSION_PATCH 5) set( CLI_CLIENT_EXECUTABLE_NAME cleos ) set( GUI_CLIENT_EXECUTABLE_NAME eosio ) diff --git a/Docker/README.md b/Docker/README.md index d5489a58584..a901a99f8b1 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.1.4 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.1.5 tag, you could do the following: ```bash -docker build -t eosio/eos:v1.1.4 --build-arg branch=v1.1.4 . +docker build -t eosio/eos:v1.1.5 --build-arg branch=v1.1.5 . ``` By default, the symbol in eosio.system is set to SYS. You can override this using the symbol argument while building the docker image.