Skip to content

Commit

Permalink
Merge pull request boscore#79 from boscore/release/3.0.x
Browse files Browse the repository at this point in the history
3s LIB v3.0.0 version
  • Loading branch information
Thaipanda authored May 7, 2019
2 parents 0b66ca1 + 27fa70e commit df6b19e
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
8 changes: 4 additions & 4 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@ cmake_minimum_required(VERSION 3.5)

project(eosio_contracts)

set(VERSION_MAJOR 2)
set(VERSION_MAJOR 3)
set(VERSION_MINOR 0)
set(VERSION_PATCH 3)
set(VERSION_PATCH 0)
#set(VERSION_SUFFIX rc3)

if (VERSION_SUFFIX)
Expand All @@ -20,8 +20,8 @@ find_package(eosio.cdt)

message(STATUS "Building eosio.contracts v${VERSION_FULL}")

set(EOSIO_CDT_VERSION_MIN "2.0")
set(EOSIO_CDT_VERSION_SOFT_MAX "2.0")
set(EOSIO_CDT_VERSION_MIN "3.0")
set(EOSIO_CDT_VERSION_SOFT_MAX "3.0")
#set(EOSIO_CDT_VERSION_HARD_MAX "")

### Check the version of eosio.cdt
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# bos.contracts


## BOSCore Version : v2.0.3
## BOSCore Version : v3.0.0
### EOSIO Contracts Version: v1.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 @@ -17,8 +17,8 @@ The following unprivileged contract(s) are also part of the system.

Dependencies:

* [bos v2.0.x](https://github.com/boscore/bos/releases/tag/v2.0.3)
* [bos.cdt v2.0.x](https://github.com/boscore/bos.cdt/releases/tag/v2.0.2)
* [bos v3.0.x](https://github.com/boscore/bos/releases)
* [bos.cdt v3.0.x](https://github.com/boscore/bos.cdt/releases)

The ibc contracts had moved to a independent repository [ibc_contracts](https://github.com/boscore/ibc_contracts).

Expand Down
4 changes: 2 additions & 2 deletions tests/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
cmake_minimum_required( VERSION 3.5 )


set(EOSIO_VERSION_MIN "2.0")
set(EOSIO_VERSION_SOFT_MAX "2.0")
set(EOSIO_VERSION_MIN "3.0")
set(EOSIO_VERSION_SOFT_MAX "3.0")

#set(EOSIO_VERSION_HARD_MAX "")

Expand Down

0 comments on commit df6b19e

Please sign in to comment.