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

Commit

Permalink
Merge pull request #461 from ethereum/develop
Browse files Browse the repository at this point in the history
Merge develop into release.
  • Loading branch information
chriseth committed Apr 18, 2016
2 parents c6fc5e5 + 812c6f9 commit 28b30ec
Show file tree
Hide file tree
Showing 10 changed files with 13 additions and 10 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ include(EthPolicy)
eth_policy()

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

include(EthCompilerSettings)

Expand Down
1 change: 0 additions & 1 deletion res/mac/appdmg.json.in
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@
"contents": [
{ "x": 484, "y": 480, "type": "link", "path": "/Applications" },
{ "x": 290, "y": 250, "type": "file", "path": "${ETH_ALETHZERO_APP}" },
{ "x": 160, "y": 250, "type": "file", "path": "${ETH_ALETHONE_APP}" },
{ "x": 678, "y": 250, "type": "file", "path": "${ETH_MIX_APP}" }
]
}
Expand Down
2 changes: 1 addition & 1 deletion solidity
Submodule solidity updated 60 files
+6 −2 CMakeLists.txt
+17 −0 docs/frequently-asked-questions.rst
+2 −0 docs/installing-solidity.rst
+1 −1 docs/introduction-to-smart-contracts.rst
+1 −1 docs/solidity-by-example.rst
+0 −9 libevmasm/Assembly.cpp
+6 −6 libevmasm/Assembly.h
+1 −1 libevmasm/AssemblyItem.cpp
+3 −2 libevmasm/AssemblyItem.h
+1 −1 libevmasm/BlockDeduplicator.cpp
+1 −1 libevmasm/CMakeLists.txt
+9 −10 libevmasm/ConstantOptimiser.cpp
+0 −8 libevmasm/ConstantOptimiser.h
+35 −24 libevmasm/GasMeter.cpp
+41 −7 libevmasm/GasMeter.h
+353 −0 libevmasm/Instruction.cpp
+268 −0 libevmasm/Instruction.h
+3 −3 libevmasm/PathGasMeter.cpp
+3 −3 libevmasm/SemanticInformation.h
+0 −38 libevmasm/Version.cpp
+0 −36 libevmasm/Version.h
+1 −2 liblll/CodeFragment.cpp
+1 −1 liblll/CodeFragment.h
+1 −1 libsolidity/CMakeLists.txt
+1 −1 libsolidity/analysis/TypeChecker.cpp
+1 −1 libsolidity/ast/AST.h
+1 −0 libsolidity/ast/Types.h
+217 −217 libsolidity/codegen/ArrayUtils.cpp
+46 −47 libsolidity/codegen/Compiler.cpp
+2 −2 libsolidity/codegen/CompilerContext.cpp
+2 −2 libsolidity/codegen/CompilerContext.h
+75 −75 libsolidity/codegen/CompilerUtils.cpp
+127 −128 libsolidity/codegen/ExpressionCompiler.cpp
+78 −78 libsolidity/codegen/LValue.cpp
+6 −5 libsolidity/inlineasm/AsmCodeGen.cpp
+2 −2 libsolidity/inlineasm/AsmData.h
+15 −12 libsolidity/inlineasm/AsmParser.cpp
+3 −3 libsolidity/interface/GasEstimator.cpp
+20 −29 libsolidity/interface/SourceReferenceFormatter.cpp
+14 −3 libsolidity/interface/SourceReferenceFormatter.h
+1 −3 libsolidity/interface/Version.cpp
+0 −1 libsolidity/parsing/Parser.cpp
+59 −19 libsolidity/parsing/ParserBase.cpp
+7 −1 libsolidity/parsing/Scanner.h
+5 −4 libsolidity/parsing/Token.cpp
+9 −7 libsolidity/parsing/Token.h
+1 −1 lllc/CMakeLists.txt
+3 −4 lllc/main.cpp
+7 −7 solc/CommandLineInterface.cpp
+4 −4 solc/jsonCompiler.cpp
+1 −1 test/CMakeLists.txt
+0 −1 test/libsolidity/Assembly.cpp
+3 −2 test/libsolidity/GasMeter.cpp
+5 −1 test/libsolidity/InlineAssembly.cpp
+58 −0 test/libsolidity/SolidityEndToEndTest.cpp
+111 −112 test/libsolidity/SolidityExpressionCompiler.cpp
+12 −1 test/libsolidity/SolidityNameAndTypeResolution.cpp
+19 −19 test/libsolidity/SolidityOptimizer.cpp
+0 −1 test/libsolidity/SolidityParser.cpp
+4 −1 test/libsolidity/solidityExecutionFramework.h
6 changes: 5 additions & 1 deletion sync.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,14 @@ set -e

git submodule sync
git submodule update --init --remote .
mkdir -p build
cd build
cmake ..
make -j 4
cd ..
./webthree-helpers/scripts/ethtests.sh libethereum --umbrella
# Only update if tests do not fail (disabled for now)
#./webthree-helpers/scripts/ethtests.sh all --umbrella
git checkout -B develop
git commit -am 'updated submodules'
git push

0 comments on commit 28b30ec

Please sign in to comment.