Skip to content

Commit acd334c

Browse files
authored
Merge pull request #1061 from ethereum/version
Set version to 0.4.0.
2 parents f5a513a + 1ccc5f6 commit acd334c

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.3.6")
11+
set(PROJECT_VERSION "0.4.0")
1212
project(solidity VERSION ${PROJECT_VERSION})
1313

1414
# Let's find our dependencies

cmake/scripts/buildinfo.cmake

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ endif()
2323
# If it does not exist, create our own prerelease string
2424
if (EXISTS ${ETH_SOURCE_DIR}/prerelease.txt)
2525
file(READ ${ETH_SOURCE_DIR}/prerelease.txt SOL_VERSION_PRERELEASE)
26-
string(STRIP ${SOL_VERSION_PRERELEASE} SOL_VERSION_PRERELEASE)
26+
string(STRIP "${SOL_VERSION_PRERELEASE}" SOL_VERSION_PRERELEASE)
2727
else()
2828
string(TIMESTAMP SOL_VERSION_PRERELEASE "develop.%Y.%m.%d" UTC)
2929
endif()

0 commit comments

Comments
 (0)