Skip to content

Commit 4dc2445

Browse files
committed
Merge pull request #265 from chriseth/version
Increment version to 0.2.0 (includes breaking changes).
2 parents d909f3a + 8342424 commit 4dc2445

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Diff for: CMakeLists.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ include(EthPolicy)
88
eth_policy()
99

1010
# project name and version should be set after cmake_policy CMP0048
11-
set(PROJECT_VERSION "0.1.7")
11+
set(PROJECT_VERSION "0.2.0")
1212
project(solidity VERSION ${PROJECT_VERSION})
1313

1414
# Let's find our dependencies

Diff for: test/libsolidity/SolidityEndToEndTest.cpp

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

0 commit comments

Comments
 (0)