Skip to content

Commit

Permalink
Merge branch 'release-candidate' into stable
Browse files Browse the repository at this point in the history
  • Loading branch information
Jeff Verkoeyen committed Dec 21, 2018
2 parents 6aec845 + 48a4229 commit c3f720c
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 1 deletion.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
# 3.0.0

`unused-parameter` has been disabled because it can cause release builds to fail to build when
using debug-only assertions to check parameters.

# 2.0.0

Added additional warnings to `strict_warnings_objc_library`:
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ Add the following to your `WORKSPACE`:
git_repository(
name = "bazel_ios_warnings",
remote = "https://github.com/material-foundation/bazel_ios_warnings.git",
tag = "v2.0.0",
tag = "v3.0.0",
)
```

Expand Down
1 change: 1 addition & 0 deletions strict_warnings_objc_library.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@ COMMON_COPTS = [
"-Wunused-variable",
"-Wunused-volatile-lvalue",
"-Wused-but-marked-unused",
"-Wno-unused-parameter", # Enabled by -Wall via -Wunused, problems with params used in asserts.
]

def strict_warnings_objc_library(
Expand Down

0 comments on commit c3f720c

Please sign in to comment.