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

Commit 0f76f2f

Browse files
committed
Merge branch 'release-candidate' into stable
2 parents 50a1edb + 1c4d245 commit 0f76f2f

38 files changed

+343
-904
lines changed

CHANGELOG.md

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,36 @@
1+
# 118.0.0
2+
3+
In this major release. we deleted all deprecated MDCSnackbarManager APIs, and made minor bug fixes and reorganizations.
4+
5+
## Breaking changes
6+
7+
### Snackbar
8+
9+
All Deprecated MDCSnackbarManager APIs have been deleted. For any of these APIs, instead of calling anything on MDCSnackbarManager, use MDCSnackbarManager.defaultManager and the same API will be available.
10+
11+
## API changes
12+
13+
## Component changes
14+
15+
### ActionSheet
16+
17+
* [Flatten the unit tests into a single directory.](https://github.com/material-components/material-components-ios/commit/ab1ea86eef7d3b0f15bb2c056281755283185264) (Jeff Verkoeyen)
18+
* [Update all test and example files to match conventions.](https://github.com/material-components/material-components-ios/commit/791596b851fdac175b51f3685016b71c91d285e7) (Jeff Verkoeyen)
19+
20+
### Chips
21+
22+
* [Replace Chips docs](https://github.com/material-components/material-components-ios/commit/9cc66610ec101eadb4195355dd5e0e00239058a8) (Andrew Overton)
23+
24+
### Dialogs
25+
26+
* [Fix an issue that alertController:didTapAction:withEvent: delegate method is not called if the action doesn't have completion handler.](https://github.com/material-components/material-components-ios/commit/cbfa5400ede2c383980953311ee01a3e0937af32) (Nobody)
27+
28+
### Snackbar
29+
30+
* [Delete all deprecated APIs.](https://github.com/material-components/material-components-ios/commit/166e7ca6cbb528d223d17e4297103314b58e2667) (Jeff Verkoeyen)
31+
32+
---
33+
134
# 117.0.0
235

336
In this major release, we deleted the `buttonFont` property on `MDCAlertController`, added the `accessoryViewHorizontalInset` property to `MDCAlertControllerView`, made minor bug fixes, and deprecated numerous APIs across multiple components.

MaterialComponents.podspec

Lines changed: 1 addition & 9 deletions
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 = "117.0.0"
5+
mdc.version = "118.0.0"
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"
@@ -88,14 +88,6 @@ Pod::Spec.new do |mdc|
8888
extension.dependency "MaterialComponents/private/Color"
8989
extension.dependency "MaterialComponents/schemes/Container"
9090
extension.dependency "MaterialComponents/ShadowElevations"
91-
92-
extension.test_spec 'UnitTests' do |unit_tests|
93-
unit_tests.source_files = [
94-
"components/#{extension.base_name.split('+')[0]}/tests/unit/#{extension.base_name.split('+')[1]}/*.{h,m,swift}",
95-
"components/#{extension.base_name.split('+')[0]}/tests/unit/#{extension.base_name.split('+')[1]}/supplemental/*.{h,m,swift}"
96-
]
97-
unit_tests.resources = "components/#{extension.base_name.split('+')[0]}/tests/unit/#{extension.base_name.split('+')[1]}/resources/*"
98-
end
9991
end
10092

10193
# ActivityIndicator

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 = "117.0.0"
3+
s.version = "118.0.0"
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 = "117.0.0"
3+
s.version = "118.0.0"
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 = "117.0.0"
56+
s.version = "118.0.0"
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-
117.0.0
1+
118.0.0

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>117.0.0</string>
18+
<string>118.0.0</string>
1919
<key>CFBundleSignature</key>
2020
<string>????</string>
2121
<key>CFBundleVersion</key>
22-
<string>117.0.0</string>
22+
<string>118.0.0</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>117.0.0</string>
18+
<string>118.0.0</string>
1919
<key>CFBundleVersion</key>
20-
<string>117.0.0</string>
20+
<string>118.0.0</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 = "117.0.0"
3+
s.version = "118.0.0"
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"

catalog/Podfile

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@ target "MDCCatalog" do
1010
pod 'MaterialComponentsExamples', :path => '../'
1111
pod 'MaterialComponents', :path => '../', :testspecs => [
1212
'ActionSheet/UnitTests',
13-
'ActionSheet+Theming/UnitTests',
1413
'ActivityIndicator/UnitTests',
1514
'AnimationTiming/UnitTests',
1615
'AppBar/UnitTests',

0 commit comments

Comments
 (0)