Skip to content

Commit c3f720c

Browse files
author
Jeff Verkoeyen
committed
Merge branch 'release-candidate' into stable
2 parents 6aec845 + 48a4229 commit c3f720c

File tree

3 files changed

+7
-1
lines changed

3 files changed

+7
-1
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
# 3.0.0
2+
3+
`unused-parameter` has been disabled because it can cause release builds to fail to build when
4+
using debug-only assertions to check parameters.
5+
16
# 2.0.0
27

38
Added additional warnings to `strict_warnings_objc_library`:

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ Add the following to your `WORKSPACE`:
99
git_repository(
1010
name = "bazel_ios_warnings",
1111
remote = "https://github.com/material-foundation/bazel_ios_warnings.git",
12-
tag = "v2.0.0",
12+
tag = "v3.0.0",
1313
)
1414
```
1515

strict_warnings_objc_library.bzl

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,7 @@ COMMON_COPTS = [
3939
"-Wunused-variable",
4040
"-Wunused-volatile-lvalue",
4141
"-Wused-but-marked-unused",
42+
"-Wno-unused-parameter", # Enabled by -Wall via -Wunused, problems with params used in asserts.
4243
]
4344

4445
def strict_warnings_objc_library(

0 commit comments

Comments
 (0)