From 4e3d05a349ecc878ed499dccd213aaaa0e1a2fa1 Mon Sep 17 00:00:00 2001 From: Bart Wyatt Date: Tue, 10 Jul 2018 22:45:22 -0400 Subject: [PATCH] bump verison to 1.0.9 --- CMakeLists.txt | 2 +- Docker/README.md | 6 +++--- Docker/docker-compose-eosio1.0.yaml | 4 ++-- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index d3cee609e7a..67272ade5a5 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -20,7 +20,7 @@ set( CXX_STANDARD_REQUIRED ON) set(VERSION_MAJOR 1) set(VERSION_MINOR 0) -set(VERSION_PATCH 8) +set(VERSION_PATCH 9) set( CLI_CLIENT_EXECUTABLE_NAME cleos ) set( GUI_CLIENT_EXECUTABLE_NAME eosio ) diff --git a/Docker/README.md b/Docker/README.md index d7ccde53b17..b052b98ca53 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.0.8 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.0.9 tag, you could do the following: ```bash -docker build -t eosio/eos:v1.0.8 --build-arg branch=v1.0.8 . +docker build -t eosio/eos:v1.0.9 --build-arg branch=v1.0.9 . ``` By default, the symbol in eosio.system is set to SYS. You can override this using the symbol argument while building the docker image. @@ -181,7 +181,7 @@ Note: if you want to use the mongo db plugin, you have to enable it in your `dat ``` # pull images -docker pull eosio/eos:v1.0.8 +docker pull eosio/eos:v1.0.9 # create volume docker volume create --name=nodeos-data-volume diff --git a/Docker/docker-compose-eosio1.0.yaml b/Docker/docker-compose-eosio1.0.yaml index 0d398e2d77c..1a50874ae45 100644 --- a/Docker/docker-compose-eosio1.0.yaml +++ b/Docker/docker-compose-eosio1.0.yaml @@ -2,7 +2,7 @@ version: "3" services: nodeosd: - image: eosio/eos:v1.0.8 + image: eosio/eos:v1.0.9 command: /opt/eosio/bin/nodeosd.sh --data-dir /opt/eosio/bin/data-dir -e hostname: nodeosd ports: @@ -14,7 +14,7 @@ services: - nodeos-data-volume:/opt/eosio/bin/data-dir keosd: - image: eosio/eos:v1.0.8 + image: eosio/eos:v1.0.9 command: /opt/eosio/bin/keosd --wallet-dir /opt/eosio/bin/data-dir --http-server-address=127.0.0.1:8900 hostname: keosd links: