Skip to content

Commit 1bf87c6

Browse files
committed
Set version to 0.3.0
1 parent 9b00290 commit 1bf87c6

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
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.2.2")
11+
set(PROJECT_VERSION "0.3.0")
1212
project(solidity VERSION ${PROJECT_VERSION})
1313

1414
# Let's find our dependencies

test/libsolidity/SolidityEndToEndTest.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5903,7 +5903,7 @@ BOOST_AUTO_TEST_CASE(version_stamp_for_libraries)
59035903
bytes runtimeCode = compileAndRun(sourceCode, 0, "lib");
59045904
BOOST_CHECK(runtimeCode.size() >= 8);
59055905
BOOST_CHECK_EQUAL(runtimeCode[0], int(eth::Instruction::PUSH6)); // might change once we switch to 1.x.x
5906-
BOOST_CHECK_EQUAL(runtimeCode[1], 2); // might change once we switch away from x.2.x
5906+
BOOST_CHECK_EQUAL(runtimeCode[1], 3); // might change once we switch away from x.3.x
59075907
BOOST_CHECK_EQUAL(runtimeCode[7], int(eth::Instruction::POP));
59085908
}
59095909

0 commit comments

Comments
 (0)