Skip to content

Commit

Permalink
Set version to 0.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
chriseth committed Mar 11, 2016
1 parent 9b00290 commit 1bf87c6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ include(EthPolicy)
eth_policy()

# project name and version should be set after cmake_policy CMP0048
set(PROJECT_VERSION "0.2.2")
set(PROJECT_VERSION "0.3.0")
project(solidity VERSION ${PROJECT_VERSION})

# Let's find our dependencies
Expand Down
2 changes: 1 addition & 1 deletion test/libsolidity/SolidityEndToEndTest.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -5903,7 +5903,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], 2); // might change once we switch away from x.2.x
BOOST_CHECK_EQUAL(runtimeCode[1], 3); // might change once we switch away from x.3.x
BOOST_CHECK_EQUAL(runtimeCode[7], int(eth::Instruction::POP));
}

Expand Down

0 comments on commit 1bf87c6

Please sign in to comment.