Skip to content
This repository was archived by the owner on Feb 7, 2018. It is now read-only.

Commit 28b30ec

Browse files
committed
Merge pull request #461 from ethereum/develop
Merge develop into release.
2 parents c6fc5e5 + 812c6f9 commit 28b30ec

File tree

10 files changed

+13
-10
lines changed

10 files changed

+13
-10
lines changed

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ include(EthPolicy)
2828
eth_policy()
2929

3030
# project name and version should be set after cmake_policy CMP0048
31-
project(cpp-ethereum VERSION "1.2.3")
31+
project(cpp-ethereum VERSION "1.2.4")
3232

3333
include(EthCompilerSettings)
3434

res/mac/appdmg.json.in

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@
66
"contents": [
77
{ "x": 484, "y": 480, "type": "link", "path": "/Applications" },
88
{ "x": 290, "y": 250, "type": "file", "path": "${ETH_ALETHZERO_APP}" },
9-
{ "x": 160, "y": 250, "type": "file", "path": "${ETH_ALETHONE_APP}" },
109
{ "x": 678, "y": 250, "type": "file", "path": "${ETH_MIX_APP}" }
1110
]
1211
}

solidity

sync.sh

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,14 @@ set -e
44

55
git submodule sync
66
git submodule update --init --remote .
7+
mkdir -p build
78
cd build
9+
cmake ..
810
make -j 4
911
cd ..
10-
./webthree-helpers/scripts/ethtests.sh libethereum --umbrella
12+
# Only update if tests do not fail (disabled for now)
13+
#./webthree-helpers/scripts/ethtests.sh all --umbrella
14+
git checkout -B develop
1115
git commit -am 'updated submodules'
1216
git push
1317

0 commit comments

Comments
 (0)