Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Solidity 0.6.11 #272

Merged
merged 1 commit into from
Jul 8, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ version: 2
jobs:
build:
macos:
xcode: "11.3.0"
xcode: "11.4.0"

steps:
- checkout
Expand All @@ -12,6 +12,7 @@ jobs:
command: |
brew unlink python@2
brew update
brew upgrade
#brew tap ethereum/ethereum # Acutally we should use the rule from the pull request
brew install https://raw.githubusercontent.com/ethereum/homebrew-ethereum/${CIRCLE_SHA1}/solidity.rb

Expand Down
6 changes: 3 additions & 3 deletions solidity.rb
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,9 @@
class Solidity < Formula
desc "The Solidity Contract-Oriented Programming Language"
homepage "http://solidity.readthedocs.org"
url "https://github.com/ethereum/solidity/releases/download/v0.6.10/solidity_0.6.10.tar.gz"
version "0.6.10"
sha256 "80324e1111ce0eb60c44bf70e8a2ff3417c45a23242bcf84ccb9467b456d6b28"
url "https://github.com/ethereum/solidity/releases/download/v0.6.11/solidity_0.6.11.tar.gz"
version "0.6.11"
sha256 "82b561bd552161353ef915ec17373d28685e58ea66e16f18f63d9b3e48a217ff"

depends_on "cmake" => :build
depends_on "boost" => "c++11"
Expand Down