diff options
author | chriseth <c@ethdev.com> | 2015-12-01 23:20:49 +0800 |
---|---|---|
committer | chriseth <c@ethdev.com> | 2015-12-01 23:20:49 +0800 |
commit | 4dc2445edd05d9d6bdc9fc4673ad91ead11f1632 (patch) | |
tree | 2806836ac414219bafd49355b1b210e0f31c892b | |
parent | d909f3a57bdd1ca43a132a80293e280910459f0d (diff) | |
parent | 8342424815135339d84cfb481d0d910daec9bc1b (diff) | |
download | dexon-solidity-4dc2445edd05d9d6bdc9fc4673ad91ead11f1632.tar.gz dexon-solidity-4dc2445edd05d9d6bdc9fc4673ad91ead11f1632.tar.zst dexon-solidity-4dc2445edd05d9d6bdc9fc4673ad91ead11f1632.zip |
Merge pull request #265 from chriseth/version
Increment version to 0.2.0 (includes breaking changes).
-rw-r--r-- | CMakeLists.txt | 2 | ||||
-rw-r--r-- | test/libsolidity/SolidityEndToEndTest.cpp | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index 4b887365..eb85e37b 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -8,7 +8,7 @@ include(EthPolicy) eth_policy() # 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}) # Let's find our dependencies diff --git a/test/libsolidity/SolidityEndToEndTest.cpp b/test/libsolidity/SolidityEndToEndTest.cpp index b69e253d..f625f533 100644 --- a/test/libsolidity/SolidityEndToEndTest.cpp +++ b/test/libsolidity/SolidityEndToEndTest.cpp @@ -5658,7 +5658,7 @@ BOOST_AUTO_TEST_CASE(version_stamp_for_libraries) bytes runtimeCode = compileAndRun(sourceCode, 0, "lib"); 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[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)); } |