Skip to content

Commit

Permalink
Merge branch 'develop' into 'master'
Browse files Browse the repository at this point in the history
fix version-test

See merge request in3/c/in3-core!332
  • Loading branch information
simon-jentzsch committed Aug 16, 2020
2 parents 2848e6e + ed4bcf6 commit 828fbdb
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ project(in3)

# options
option(BUILD_DOC "generates the documenation with doxygen." OFF)
option(TAG_VERSION "the tagged version, which should be used" 2.0.0)
option(TAG_VERSION "the tagged version, which should be used" 3.0.0)
option(ETH_NANO "build minimal eth verification.(eth_getTransactionReceipt)" ON)
option(ETH_BASIC "build basic eth verification.(all rpc-calls except eth_call)" ON)
option(ETH_FULL "build full eth verification.(including eth_call)" ON)
Expand Down Expand Up @@ -182,7 +182,7 @@ endif()
if (TAG_VERSION)
set(PROJECT_VERSION "${TAG_VERSION}")
else(TAG_VERSION)
set(PROJECT_VERSION "2.2.2-local")
set(PROJECT_VERSION "3.0.0-local")
endif(TAG_VERSION)

MESSAGE(STATUS "Building version ${PROJECT_VERSION}")
Expand Down
2 changes: 1 addition & 1 deletion wasm/test/testUtil.js
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ describe('Util-Tests', () => {

it('getVersion', async () => {
const res = IN3.util.getVersion()
assert.match(res, /2\.[0-9]+\.[0-9]+/)
assert.match(res, /3\.[0-9]+\.[0-9]+/)
})

it('getAddress', async () => {
Expand Down

0 comments on commit 828fbdb

Please sign in to comment.