Increment version to 0.2.0 (includes breaking changes).

This commit is contained in:
chriseth 2015-12-01 15:44:13 +01:00
parent d909f3a57b
commit 8342424815
2 changed files with 2 additions and 2 deletions

View File

@ -8,7 +8,7 @@ include(EthPolicy)
eth_policy() eth_policy()
# project name and version should be set after cmake_policy CMP0048 # project name and version should be set after cmake_policy CMP0048
set(PROJECT_VERSION "0.1.7") set(PROJECT_VERSION "0.2.0")
project(solidity VERSION ${PROJECT_VERSION}) project(solidity VERSION ${PROJECT_VERSION})
# Let's find our dependencies # Let's find our dependencies

View File

@ -5658,7 +5658,7 @@ BOOST_AUTO_TEST_CASE(version_stamp_for_libraries)
bytes runtimeCode = compileAndRun(sourceCode, 0, "lib"); bytes runtimeCode = compileAndRun(sourceCode, 0, "lib");
BOOST_CHECK(runtimeCode.size() >= 8); BOOST_CHECK(runtimeCode.size() >= 8);
BOOST_CHECK_EQUAL(runtimeCode[0], int(eth::Instruction::PUSH6)); // might change once we switch to 1.x.x BOOST_CHECK_EQUAL(runtimeCode[0], int(eth::Instruction::PUSH6)); // might change once we switch to 1.x.x
BOOST_CHECK_EQUAL(runtimeCode[1], 1); // might change once we switch away from x.1.x BOOST_CHECK_EQUAL(runtimeCode[1], 2); // might change once we switch away from x.2.x
BOOST_CHECK_EQUAL(runtimeCode[7], int(eth::Instruction::POP)); BOOST_CHECK_EQUAL(runtimeCode[7], int(eth::Instruction::POP));
} }