Skip to content

Commit 846ba52

Browse files
author
Jeff Verkoeyen
committed
Merge branch 'release-candidate' into stable
2 parents effd1a4 + ee9af2a commit 846ba52

File tree

12 files changed

+28
-12
lines changed

12 files changed

+28
-12
lines changed

CHANGELOG.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,17 @@
1+
# 54.6.1
2+
3+
This is a hotfix release fixing a bug in ButtonBar that was introduced in 54.6.0.
4+
5+
## Component changes
6+
7+
### ButtonBar
8+
9+
#### Changes
10+
11+
* [[NavigationBar]Restore the changed default inkColor](https://github.com/material-components/material-components-ios/commit/367048d4b2f40eb84f0c3161c218db69798461d5) (Ali Rabbani)
12+
13+
---
14+
115
# 54.6.0
216

317
This release introduces new APIs and themers for customizing typography and color. This release

MaterialComponents.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ load 'scripts/generated/icons.rb'
22

33
Pod::Spec.new do |mdc|
44
mdc.name = "MaterialComponents"
5-
mdc.version = "54.6.0"
5+
mdc.version = "54.6.1"
66
mdc.authors = "The Material Components authors."
77
mdc.summary = "A collection of stand-alone production-ready UI libraries focused on design details."
88
mdc.homepage = "https://github.com/material-components/material-components-ios"

MaterialComponentsEarlGreyTests.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Pod::Spec.new do |s|
22
s.name = "MaterialComponentsEarlGreyTests"
3-
s.version = "54.6.0"
3+
s.version = "54.6.1"
44
s.authors = "The Material Components authors."
55
s.summary = "This spec is an aggregate of all the Material Components EarlGrey tests."
66
s.description = "This spec is made for use in the MDC Catalog."

MaterialComponentsExamples.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Pod::Spec.new do |s|
22
s.name = "MaterialComponentsExamples"
3-
s.version = "54.6.0"
3+
s.version = "54.6.1"
44
s.authors = "The Material Components authors."
55
s.summary = "This spec is an aggregate of all the Material Components examples."
66
s.description = "This spec is made for use in the MDC Catalog. Used in conjunction with CatalogByConvention we create our Material Catalog."

MaterialComponentsUnitTests.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Pod::Spec.new do |s|
22
s.name = "MaterialComponentsUnitTests"
3-
s.version = "54.6.0"
3+
s.version = "54.6.1"
44
s.authors = "The Material Components authors."
55
s.summary = "This spec is an aggregate of all the Material Components unit tests."
66
s.description = "This spec is made for use in the MDC Catalog."

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
54.6.0
1+
54.6.1

catalog/MDCCatalog/Info.plist

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
<key>CFBundlePackageType</key>
1616
<string>APPL</string>
1717
<key>CFBundleShortVersionString</key>
18-
<string>54.6.0</string>
18+
<string>54.6.1</string>
1919
<key>CFBundleSignature</key>
2020
<string>????</string>
2121
<key>CFBundleVersion</key>

catalog/MaterialCatalog/MaterialCatalog.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Pod::Spec.new do |s|
22
s.name = "MaterialCatalog"
3-
s.version = "54.6.0"
3+
s.version = "54.6.1"
44
s.summary = "Helper Objective-C classes for the MDC catalog."
55
s.description = "This spec is made for use in the MDC Catalog."
66
s.homepage = "https://github.com/material-components/material-components-ios"

components/ButtonBar/src/private/MDCAppBarButtonBarBuilder.m

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -88,8 +88,10 @@ - (UIView *)buttonBar:(MDCButtonBar *)buttonBar
8888
MDCButtonBarButton *button = [[MDCButtonBarButton alloc] init];
8989
[button setBackgroundColor:[UIColor clearColor] forState:UIControlStateNormal];
9090
button.disabledAlpha = kDisabledButtonAlpha;
91-
button.inkColor = buttonBar.inkColor ? buttonBar.inkColor : button.inkColor;
92-
91+
if (buttonBar.inkColor) {
92+
button.inkColor = buttonBar.inkColor;
93+
}
94+
9395
button.exclusiveTouch = YES;
9496

9597
[MDCAppBarButtonBarBuilder configureButton:button fromButtonItem:buttonItem];

components/LibraryInfo/src/MDCLibraryInfo.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
// This string is updated automatically as a part of the release process and should not be edited
2222
// manually. Do not rename this constant or change the formatting without updating the release
2323
// scripts.
24-
static NSString const *MDCLibraryInfoVersionString = @"54.6.0";
24+
static NSString const *MDCLibraryInfoVersionString = @"54.6.1";
2525

2626
@implementation MDCLibraryInfo
2727

0 commit comments

Comments
 (0)