From 613cda0b9a2633c79f41465f3af67f69b42fbdf0 Mon Sep 17 00:00:00 2001 From: arhag Date: Tue, 24 Jul 2018 18:11:29 -0400 Subject: [PATCH] typo fixes and upgrade version to 1.1.1 in CMakeLists.txt and README --- CMakeLists.txt | 2 +- README.md | 9 ++++----- 2 files changed, 5 insertions(+), 6 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 11c809ca9..4bf8cab8d 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,5 +1,5 @@ cmake_minimum_required(VERSION 3.5) -project(eosio_contracts VERSION 1.1.0) +project(eosio_contracts VERSION 1.1.1) if(CMAKE_BUILD_TYPE STREQUAL "Debug") set(TEST_BUILD_TYPE "Debug") diff --git a/README.md b/README.md index 4aebc8a61..883c887f7 100644 --- a/README.md +++ b/README.md @@ -1,17 +1,16 @@ # eosio.contracts -## Version : 1.1.0 +## Version : 1.1.1 The design of the EOSIO blockchain calls for a number of smart contracts that are run at a privileged permission level in order to support functions such as block producer registration and voting, token staking for CPU and network bandwidth, RAM purchasing, multi-sig, etc. These smart contracts are referred to as the system, token, msig and sudo contracts. -This repository contains examples of these priviledged contracts that are useful when depoying, managing, and/or using an EOSIO blockchain. They are provided for reference purposes: +This repository contains examples of these privileged contracts that are useful when deploying, managing, and/or using an EOSIO blockchain. They are provided for reference purposes: * [eosio.system](https://github.com/eosio/eosio.contracts/tree/master/eosio.system) - * [eosio.msig](https://github.com/eosio/eosio.contracts/tree/master/eosio.msig) * [eosio.sudo](https://github.com/eosio/eosio.contracts/tree/master/eosio.sudo) - -The following unpriviledged contract(s) are also part of the system. + +The following unprivileged contract(s) are also part of the system. * [eosio.token](https://github.com/eosio/eosio.contracts/tree/master/eosio.token) Dependencies: