diff --git a/CMakeLists.txt b/CMakeLists.txt index 14d8798fdbfd395321b781d6cefc31b776e48c54..c374afa42efad5882690356df3b635504f8010cc 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -27,7 +27,7 @@ set( CXX_STANDARD_REQUIRED ON) set(VERSION_MAJOR 1) set(VERSION_MINOR 2) -set(VERSION_PATCH 0) +set(VERSION_PATCH 1) set( CLI_CLIENT_EXECUTABLE_NAME cleos ) set( NODE_EXECUTABLE_NAME nodeos ) diff --git a/Docker/README.md b/Docker/README.md index db1e9d897fce71f9bbbb1f22d4a517768b1d5bbf..d1d38924bdb9a31593628005a4e8da2ada23bb0a 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.2.0 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.2.1 tag, you could do the following: ```bash -docker build -t eosio/eos:v1.2.0 --build-arg branch=v1.2.0 . +docker build -t eosio/eos:v1.2.1 --build-arg branch=v1.2.1 . ``` By default, the symbol in eosio.system is set to SYS. You can override this using the symbol argument while building the docker image.