Skip to content
This repository has been archived by the owner on Jun 22, 2019. It is now read-only.

Commit

Permalink
Merge branch 'release/4.0.0'
Browse files Browse the repository at this point in the history
  • Loading branch information
jasonmp85 committed Jun 16, 2016
2 parents 3af49a1 + 8221dbb commit 3c86dab
Show file tree
Hide file tree
Showing 5 changed files with 17 additions and 8 deletions.
1 change: 1 addition & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ matrix:
include:
- osx_image: xcode7.1
- osx_image: xcode7.2
- osx_image: xcode7.3
before_install:
- brew update; brew update
install:
Expand Down
10 changes: 9 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,12 @@
### homebrew-iwyu v2.1.0 (December 23, 2015) ###
### homebrew-iwyu v4.0.0 (June 16, 2016) ###

* Installs include-what-you-use 0.6 (based on clang 3.8.0)

* Compiles against Apple LLVM 7.3.0

* Adds Xcode 7.3 to Travis build matrix

### homebrew-iwyu v3.0.0 (December 23, 2015) ###

* Installs include-what-you-use 0.5 (based on clang 3.7.0)

Expand Down
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
The MIT License (MIT)

Copyright (c) 2014–2015 Jason Petersen
Copyright (c) 2014–2016 Jason Petersen

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ Tell make to use it as the C compiler: `make -k CC=iwyu`. It's necessary to use
Copyright
---------

Copyright © 2014–2015 Jason Petersen
Copyright © 2014–2016 Jason Petersen

Code released under the [MIT License](LICENSE).

Expand Down
10 changes: 5 additions & 5 deletions iwyu.rb
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
require "English"
require "formula"

# include-what-you-use needs access to headers included with LLVM 3.7, which
# include-what-you-use needs access to headers included with LLVM 3.8, which
# is only present in Xcode version 7.0 or higher.
class Xcode70 < Requirement
fatal true
Expand All @@ -18,14 +18,14 @@ def message
# build and install include-what-you-use, symlink it as iwyu, and install a
# Python wrapper to automatically correct includes (fix_include).
class Iwyu < Formula
# iwyu 0.5 based on clang 3.7
CLANG_VERSION = "3.7"
# iwyu 0.6 based on clang 3.8
CLANG_VERSION = "3.8".freeze

version "0.5"
version "0.6"
homepage "http://include-what-you-use.org"
url "http://include-what-you-use.org/downloads/" \
"include-what-you-use-#{version}-x86_64-apple-darwin.tar.gz"
sha256 "5d31ca1a7611a6dd40a11387ec34e42bf5aafa1740ed2b3baaf781541df83ad0"
sha256 "46a7e579ad17441ba8b23fe105400565ff978cc61957c19291563912d1f4638d"

depends_on Xcode70

Expand Down

0 comments on commit 3c86dab

Please sign in to comment.