Skip to content
This repository has been archived by the owner on Aug 30, 2022. It is now read-only.

Commit

Permalink
Merge pull request #211 from EOSIO/release/1.6.x-version
Browse files Browse the repository at this point in the history
Bump version to v1.6.0
  • Loading branch information
zorba80 authored Mar 29, 2019
2 parents f1a5c68 + 2eb6b8a commit 8c03c91
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ project(eosio_contracts)
set(VERSION_MAJOR 1)
set(VERSION_MINOR 6)
set(VERSION_PATCH 0)
set(VERSION_SUFFIX rc3)
#set(VERSION_SUFFIX rc3)

if (VERSION_SUFFIX)
set(VERSION_FULL "${VERSION_MAJOR}.${VERSION_MINOR}.${VERSION_PATCH}-${VERSION_SUFFIX}")
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# eosio.contracts

## Version : 1.6.0-rc3
## Version : 1.6.0

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 wrap (formerly known as sudo) contracts.

Expand All @@ -14,7 +14,7 @@ The following unprivileged contract(s) are also part of the system.
* [eosio.token](https://github.com/eosio/eosio.contracts/tree/master/eosio.token)

Dependencies:
* [eosio v1.6.x](https://github.com/EOSIO/eos/releases/tag/v1.6.3)
* [eosio v1.7.x](https://github.com/EOSIO/eos/releases/tag/v1.7.0)
* [eosio.cdt v1.5.x](https://github.com/EOSIO/eosio.cdt/releases/tag/v1.5.0)

To build the contracts and the unit tests:
Expand Down
2 changes: 1 addition & 1 deletion contracts/eosio.system/src/rex.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -759,7 +759,7 @@ namespace eosiosystem {
order.stake_change.amount = result.stake_change.amount;
order.close();
});
/// send dummy action to show and owner and proceeds of filled sellrex order
/// send dummy action to show owner and proceeds of filled sellrex order
rex_results::orderresult_action order_act( rex_account, std::vector<eosio::permission_level>{ } );
order_act.send( order_owner, result.proceeds );
}
Expand Down
4 changes: 2 additions & 2 deletions tests/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
cmake_minimum_required( VERSION 3.5 )

set(EOSIO_VERSION_MIN "1.4")
set(EOSIO_VERSION_SOFT_MAX "1.6")
set(EOSIO_VERSION_MIN "1.6")
set(EOSIO_VERSION_SOFT_MAX "1.7")
#set(EOSIO_VERSION_HARD_MAX "")

find_package(eosio)
Expand Down

0 comments on commit 8c03c91

Please sign in to comment.