Skip to content
This repository was archived by the owner on Dec 11, 2025. It is now read-only.

Commit b245999

Browse files
committed
Merge branch 'release-candidate' into stable
2 parents 0f76f2f + 4fcee59 commit b245999

25 files changed

+128
-230
lines changed

CHANGELOG.md

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,23 @@
1+
# 118.0.1
2+
3+
In this patch release, an MDCNavigationDrawer bug for accessibility dismissal is fixed and references to deprecated Math APIs are removed.
4+
5+
## Component changes
6+
7+
### NavigationDrawer
8+
9+
* [Fix the bug caused by regression in the PR "Optional dismiss on accessibilityPerformEscape", where the forwarded touch events are interfered by gesture recognizer introduced in the CL. Cause: The variable dismissOnBackgroundTap should be used to determine whether gesture recognizer is added to the presentation view controller. When the check was removed, gesture recognizer is interfering and touchesended is not propagated. Fix: Add back the check and add tap gesture recognizer only when dismissOnBackgroundTap is set to true.](https://github.com/material-components/material-components-ios/commit/6ad0683d1aa17c4181439a082df98e7da54d635e) (Nobody)
10+
11+
### Snackbar
12+
13+
* [Replace snackbar docs](https://github.com/material-components/material-components-ios/commit/f8ef922901a41258cf9c3c68e617fa19af0e43b4) (Andrew Overton)
14+
15+
### private/Math
16+
17+
* [Remove use of deprecated methods.](https://github.com/material-components/material-components-ios/commit/139d7f628ec0d02ec545920899a43427d33e183a) (Aron Budinszky)
18+
19+
---
20+
121
# 118.0.0
222

323
In this major release. we deleted all deprecated MDCSnackbarManager APIs, and made minor bug fixes and reorganizations.

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 = "118.0.0"
5+
mdc.version = "118.0.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 = "118.0.0"
3+
s.version = "118.0.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 = "118.0.0"
3+
s.version = "118.0.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."

MaterialComponentsSnapshotTests.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ end
5353

5454
Pod::Spec.new do |s|
5555
s.name = "MaterialComponentsSnapshotTests"
56-
s.version = "118.0.0"
56+
s.version = "118.0.1"
5757
s.authors = "The Material Components authors."
5858
s.summary = "This spec is an aggregate of all the Material Components snapshot tests."
5959
s.homepage = "https://github.com/material-components/material-components-ios"

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
118.0.0
1+
118.0.1

catalog/MDCCatalog/Info.plist

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,11 +15,11 @@
1515
<key>CFBundlePackageType</key>
1616
<string>APPL</string>
1717
<key>CFBundleShortVersionString</key>
18-
<string>118.0.0</string>
18+
<string>118.0.1</string>
1919
<key>CFBundleSignature</key>
2020
<string>????</string>
2121
<key>CFBundleVersion</key>
22-
<string>118.0.0</string>
22+
<string>118.0.1</string>
2323
<key>LSRequiresIPhoneOS</key>
2424
<true/>
2525
<key>UIAppFonts</key>

catalog/MDCDragons/Info.plist

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,9 @@
1515
<key>CFBundlePackageType</key>
1616
<string>APPL</string>
1717
<key>CFBundleShortVersionString</key>
18-
<string>118.0.0</string>
18+
<string>118.0.1</string>
1919
<key>CFBundleVersion</key>
20-
<string>118.0.0</string>
20+
<string>118.0.1</string>
2121
<key>LSRequiresIPhoneOS</key>
2222
<true/>
2323
<key>UILaunchStoryboardName</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 = "118.0.0"
3+
s.version = "118.0.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/LibraryInfo/src/MDCLibraryInfo.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
// This string is updated automatically as a part of the release process and should not be edited
2020
// manually. Do not rename this constant or change the formatting without updating the release
2121
// scripts.
22-
static NSString* const kMDCLibraryInfoVersionString = @"118.0.0";
22+
static NSString* const kMDCLibraryInfoVersionString = @"118.0.1";
2323

2424
@implementation MDCLibraryInfo
2525

0 commit comments

Comments
 (0)