diff --git a/FirebaseFirestore.podspec b/FirebaseFirestore.podspec
index c66e6156..3d51da6c 100755
--- a/FirebaseFirestore.podspec
+++ b/FirebaseFirestore.podspec
@@ -1,4 +1,4 @@
-firebase_firestore_version = '1.17.1'
+firebase_firestore_version = '1.18.0'
Pod::Spec.new do |s|
s.name = 'FirebaseFirestore'
diff --git a/FirebaseFirestore/BoringSSL-GRPC.xcframework/ios-armv7_arm64/BoringSSL-GRPC.framework/BoringSSL-GRPC b/FirebaseFirestore/BoringSSL-GRPC.xcframework/ios-armv7_arm64/BoringSSL-GRPC.framework/BoringSSL-GRPC
index 139692b8..66be0abd 100644
Binary files a/FirebaseFirestore/BoringSSL-GRPC.xcframework/ios-armv7_arm64/BoringSSL-GRPC.framework/BoringSSL-GRPC and b/FirebaseFirestore/BoringSSL-GRPC.xcframework/ios-armv7_arm64/BoringSSL-GRPC.framework/BoringSSL-GRPC differ
diff --git a/FirebaseFirestore/BoringSSL-GRPC.xcframework/ios-i386_x86_64-simulator/BoringSSL-GRPC.framework/BoringSSL-GRPC b/FirebaseFirestore/BoringSSL-GRPC.xcframework/ios-i386_x86_64-simulator/BoringSSL-GRPC.framework/BoringSSL-GRPC
index 458a8ffe..fd0ba838 100644
Binary files a/FirebaseFirestore/BoringSSL-GRPC.xcframework/ios-i386_x86_64-simulator/BoringSSL-GRPC.framework/BoringSSL-GRPC and b/FirebaseFirestore/BoringSSL-GRPC.xcframework/ios-i386_x86_64-simulator/BoringSSL-GRPC.framework/BoringSSL-GRPC differ
diff --git a/FirebaseFirestore/BoringSSL-GRPC.xcframework/ios-x86_64-maccatalyst/BoringSSL-GRPC.framework/BoringSSL-GRPC b/FirebaseFirestore/BoringSSL-GRPC.xcframework/ios-x86_64-maccatalyst/BoringSSL-GRPC.framework/BoringSSL-GRPC
index 6f7fbaf1..4c728675 100644
Binary files a/FirebaseFirestore/BoringSSL-GRPC.xcframework/ios-x86_64-maccatalyst/BoringSSL-GRPC.framework/BoringSSL-GRPC and b/FirebaseFirestore/BoringSSL-GRPC.xcframework/ios-x86_64-maccatalyst/BoringSSL-GRPC.framework/BoringSSL-GRPC differ
diff --git a/FirebaseFirestore/FirebaseFirestore.xcframework/Info.plist b/FirebaseFirestore/FirebaseFirestore.xcframework/Info.plist
index c0bead36..74081ec7 100644
--- a/FirebaseFirestore/FirebaseFirestore.xcframework/Info.plist
+++ b/FirebaseFirestore/FirebaseFirestore.xcframework/Info.plist
@@ -6,45 +6,45 @@
LibraryIdentifier
- ios-x86_64-maccatalyst
+ ios-armv7_arm64
LibraryPath
FirebaseFirestore.framework
SupportedArchitectures
- x86_64
+ armv7
+ arm64
SupportedPlatform
ios
- SupportedPlatformVariant
- maccatalyst
LibraryIdentifier
- ios-armv7_arm64
+ ios-i386_x86_64-simulator
LibraryPath
FirebaseFirestore.framework
SupportedArchitectures
- armv7
- arm64
+ i386
+ x86_64
SupportedPlatform
ios
+ SupportedPlatformVariant
+ simulator
LibraryIdentifier
- ios-i386_x86_64-simulator
+ ios-x86_64-maccatalyst
LibraryPath
FirebaseFirestore.framework
SupportedArchitectures
- i386
x86_64
SupportedPlatform
ios
SupportedPlatformVariant
- simulator
+ maccatalyst
CFBundlePackageType
diff --git a/FirebaseFirestore/FirebaseFirestore.xcframework/ios-armv7_arm64/FirebaseFirestore.framework/FirebaseFirestore b/FirebaseFirestore/FirebaseFirestore.xcframework/ios-armv7_arm64/FirebaseFirestore.framework/FirebaseFirestore
index 3dcaade0..7286b9e5 100644
Binary files a/FirebaseFirestore/FirebaseFirestore.xcframework/ios-armv7_arm64/FirebaseFirestore.framework/FirebaseFirestore and b/FirebaseFirestore/FirebaseFirestore.xcframework/ios-armv7_arm64/FirebaseFirestore.framework/FirebaseFirestore differ
diff --git a/FirebaseFirestore/FirebaseFirestore.xcframework/ios-armv7_arm64/FirebaseFirestore.framework/Headers/FIRQuery.h b/FirebaseFirestore/FirebaseFirestore.xcframework/ios-armv7_arm64/FirebaseFirestore.framework/Headers/FIRQuery.h
index a9da2fb4..866b3071 100644
--- a/FirebaseFirestore/FirebaseFirestore.xcframework/ios-armv7_arm64/FirebaseFirestore.framework/Headers/FIRQuery.h
+++ b/FirebaseFirestore/FirebaseFirestore.xcframework/ios-armv7_arm64/FirebaseFirestore.framework/Headers/FIRQuery.h
@@ -109,6 +109,30 @@ NS_SWIFT_NAME(Query)
- (FIRQuery *)queryWhereField:(NSString *)field
isEqualTo:(id)value NS_SWIFT_NAME(whereField(_:isEqualTo:));
+/**
+ * Creates and returns a new `FIRQuery` with the additional filter that documents must
+ * contain the specified field and the value does not equal the specified value.
+ *
+ * @param path The path of the field to compare.
+ * @param value The value the field must be equal to.
+ *
+ * @return The created `FIRQuery`.
+ */
+- (FIRQuery *)queryWhereFieldPath:(FIRFieldPath *)path
+ isNotEqualTo:(id)value NS_SWIFT_NAME(whereField(_:isNotEqualTo:));
+
+/**
+ * Creates and returns a new `FIRQuery` with the additional filter that documents must
+ * contain the specified field and the value does not equal the specified value.
+ *
+ * @param field The name of the field to compare.
+ * @param value The value the field must be equal to.
+ *
+ * @return The created `FIRQuery`.
+ */
+- (FIRQuery *)queryWhereField:(NSString *)field
+ isNotEqualTo:(id)value NS_SWIFT_NAME(whereField(_:isNotEqualTo:));
+
/**
* Creates and returns a new `FIRQuery` with the additional filter that documents must
* contain the specified field and the value must be equal to the specified value.
@@ -308,6 +332,42 @@ NS_SWIFT_NAME(Query)
- (FIRQuery *)queryWhereFieldPath:(FIRFieldPath *)path
in:(NSArray *)values NS_SWIFT_NAME(whereField(_:in:));
+/**
+ * Creates and returns a new `FIRQuery` with the additional filter that documents must contain
+ * the specified field and the value does not equal any of the values from the provided array.
+ *
+ * One special case is that `notIn` filters cannot match `nil` values. To query for documents
+ * where a field exists and is `nil`, use a `notEqual` filter, which can handle this special case.
+ *
+ * A query can have only one `notIn` filter, and it cannot be combined with an `arrayContains`,
+ * `arrayContainsAny`, `in`, or `notEqual` filter.
+ *
+ * @param field The name of the field to search.
+ * @param values The array that contains the values to match.
+ *
+ * @return The created `FIRQuery`.
+ */
+- (FIRQuery *)queryWhereField:(NSString *)field
+ notIn:(NSArray *)values NS_SWIFT_NAME(whereField(_:notIn:));
+
+/**
+ * Creates and returns a new `FIRQuery` with the additional filter that documents must contain
+ * the specified field and the value does not equal any of the values from the provided array.
+ *
+ * One special case is that `notIn` filters cannot match `nil` values. To query for documents
+ * where a field exists and is `nil`, use a `notEqual` filter, which can handle this special case.
+ *
+ * Passing in a `null` value into the `values` array results in no document matches. To query
+ * for documents where a field is not `null`, use a `notEqual` filter.
+ *
+ * @param path The path of the field to search.
+ * @param values The array that contains the values to match.
+ *
+ * @return The created `FIRQuery`.
+ */
+- (FIRQuery *)queryWhereFieldPath:(FIRFieldPath *)path
+ notIn:(NSArray *)values NS_SWIFT_NAME(whereField(_:notIn:));
+
/**
* Creates and returns a new `FIRQuery` with the additional filter that documents must
* satisfy the specified predicate.
diff --git a/FirebaseFirestore/FirebaseFirestore.xcframework/ios-i386_x86_64-simulator/FirebaseFirestore.framework/FirebaseFirestore b/FirebaseFirestore/FirebaseFirestore.xcframework/ios-i386_x86_64-simulator/FirebaseFirestore.framework/FirebaseFirestore
index 72737962..35937e09 100644
Binary files a/FirebaseFirestore/FirebaseFirestore.xcframework/ios-i386_x86_64-simulator/FirebaseFirestore.framework/FirebaseFirestore and b/FirebaseFirestore/FirebaseFirestore.xcframework/ios-i386_x86_64-simulator/FirebaseFirestore.framework/FirebaseFirestore differ
diff --git a/FirebaseFirestore/FirebaseFirestore.xcframework/ios-i386_x86_64-simulator/FirebaseFirestore.framework/Headers/FIRQuery.h b/FirebaseFirestore/FirebaseFirestore.xcframework/ios-i386_x86_64-simulator/FirebaseFirestore.framework/Headers/FIRQuery.h
index a9da2fb4..866b3071 100644
--- a/FirebaseFirestore/FirebaseFirestore.xcframework/ios-i386_x86_64-simulator/FirebaseFirestore.framework/Headers/FIRQuery.h
+++ b/FirebaseFirestore/FirebaseFirestore.xcframework/ios-i386_x86_64-simulator/FirebaseFirestore.framework/Headers/FIRQuery.h
@@ -109,6 +109,30 @@ NS_SWIFT_NAME(Query)
- (FIRQuery *)queryWhereField:(NSString *)field
isEqualTo:(id)value NS_SWIFT_NAME(whereField(_:isEqualTo:));
+/**
+ * Creates and returns a new `FIRQuery` with the additional filter that documents must
+ * contain the specified field and the value does not equal the specified value.
+ *
+ * @param path The path of the field to compare.
+ * @param value The value the field must be equal to.
+ *
+ * @return The created `FIRQuery`.
+ */
+- (FIRQuery *)queryWhereFieldPath:(FIRFieldPath *)path
+ isNotEqualTo:(id)value NS_SWIFT_NAME(whereField(_:isNotEqualTo:));
+
+/**
+ * Creates and returns a new `FIRQuery` with the additional filter that documents must
+ * contain the specified field and the value does not equal the specified value.
+ *
+ * @param field The name of the field to compare.
+ * @param value The value the field must be equal to.
+ *
+ * @return The created `FIRQuery`.
+ */
+- (FIRQuery *)queryWhereField:(NSString *)field
+ isNotEqualTo:(id)value NS_SWIFT_NAME(whereField(_:isNotEqualTo:));
+
/**
* Creates and returns a new `FIRQuery` with the additional filter that documents must
* contain the specified field and the value must be equal to the specified value.
@@ -308,6 +332,42 @@ NS_SWIFT_NAME(Query)
- (FIRQuery *)queryWhereFieldPath:(FIRFieldPath *)path
in:(NSArray *)values NS_SWIFT_NAME(whereField(_:in:));
+/**
+ * Creates and returns a new `FIRQuery` with the additional filter that documents must contain
+ * the specified field and the value does not equal any of the values from the provided array.
+ *
+ * One special case is that `notIn` filters cannot match `nil` values. To query for documents
+ * where a field exists and is `nil`, use a `notEqual` filter, which can handle this special case.
+ *
+ * A query can have only one `notIn` filter, and it cannot be combined with an `arrayContains`,
+ * `arrayContainsAny`, `in`, or `notEqual` filter.
+ *
+ * @param field The name of the field to search.
+ * @param values The array that contains the values to match.
+ *
+ * @return The created `FIRQuery`.
+ */
+- (FIRQuery *)queryWhereField:(NSString *)field
+ notIn:(NSArray *)values NS_SWIFT_NAME(whereField(_:notIn:));
+
+/**
+ * Creates and returns a new `FIRQuery` with the additional filter that documents must contain
+ * the specified field and the value does not equal any of the values from the provided array.
+ *
+ * One special case is that `notIn` filters cannot match `nil` values. To query for documents
+ * where a field exists and is `nil`, use a `notEqual` filter, which can handle this special case.
+ *
+ * Passing in a `null` value into the `values` array results in no document matches. To query
+ * for documents where a field is not `null`, use a `notEqual` filter.
+ *
+ * @param path The path of the field to search.
+ * @param values The array that contains the values to match.
+ *
+ * @return The created `FIRQuery`.
+ */
+- (FIRQuery *)queryWhereFieldPath:(FIRFieldPath *)path
+ notIn:(NSArray *)values NS_SWIFT_NAME(whereField(_:notIn:));
+
/**
* Creates and returns a new `FIRQuery` with the additional filter that documents must
* satisfy the specified predicate.
diff --git a/FirebaseFirestore/FirebaseFirestore.xcframework/ios-x86_64-maccatalyst/FirebaseFirestore.framework/FirebaseFirestore b/FirebaseFirestore/FirebaseFirestore.xcframework/ios-x86_64-maccatalyst/FirebaseFirestore.framework/FirebaseFirestore
index 7c6465f8..4682c384 100644
Binary files a/FirebaseFirestore/FirebaseFirestore.xcframework/ios-x86_64-maccatalyst/FirebaseFirestore.framework/FirebaseFirestore and b/FirebaseFirestore/FirebaseFirestore.xcframework/ios-x86_64-maccatalyst/FirebaseFirestore.framework/FirebaseFirestore differ
diff --git a/FirebaseFirestore/FirebaseFirestore.xcframework/ios-x86_64-maccatalyst/FirebaseFirestore.framework/Headers/FIRQuery.h b/FirebaseFirestore/FirebaseFirestore.xcframework/ios-x86_64-maccatalyst/FirebaseFirestore.framework/Headers/FIRQuery.h
index a9da2fb4..866b3071 100644
--- a/FirebaseFirestore/FirebaseFirestore.xcframework/ios-x86_64-maccatalyst/FirebaseFirestore.framework/Headers/FIRQuery.h
+++ b/FirebaseFirestore/FirebaseFirestore.xcframework/ios-x86_64-maccatalyst/FirebaseFirestore.framework/Headers/FIRQuery.h
@@ -109,6 +109,30 @@ NS_SWIFT_NAME(Query)
- (FIRQuery *)queryWhereField:(NSString *)field
isEqualTo:(id)value NS_SWIFT_NAME(whereField(_:isEqualTo:));
+/**
+ * Creates and returns a new `FIRQuery` with the additional filter that documents must
+ * contain the specified field and the value does not equal the specified value.
+ *
+ * @param path The path of the field to compare.
+ * @param value The value the field must be equal to.
+ *
+ * @return The created `FIRQuery`.
+ */
+- (FIRQuery *)queryWhereFieldPath:(FIRFieldPath *)path
+ isNotEqualTo:(id)value NS_SWIFT_NAME(whereField(_:isNotEqualTo:));
+
+/**
+ * Creates and returns a new `FIRQuery` with the additional filter that documents must
+ * contain the specified field and the value does not equal the specified value.
+ *
+ * @param field The name of the field to compare.
+ * @param value The value the field must be equal to.
+ *
+ * @return The created `FIRQuery`.
+ */
+- (FIRQuery *)queryWhereField:(NSString *)field
+ isNotEqualTo:(id)value NS_SWIFT_NAME(whereField(_:isNotEqualTo:));
+
/**
* Creates and returns a new `FIRQuery` with the additional filter that documents must
* contain the specified field and the value must be equal to the specified value.
@@ -308,6 +332,42 @@ NS_SWIFT_NAME(Query)
- (FIRQuery *)queryWhereFieldPath:(FIRFieldPath *)path
in:(NSArray *)values NS_SWIFT_NAME(whereField(_:in:));
+/**
+ * Creates and returns a new `FIRQuery` with the additional filter that documents must contain
+ * the specified field and the value does not equal any of the values from the provided array.
+ *
+ * One special case is that `notIn` filters cannot match `nil` values. To query for documents
+ * where a field exists and is `nil`, use a `notEqual` filter, which can handle this special case.
+ *
+ * A query can have only one `notIn` filter, and it cannot be combined with an `arrayContains`,
+ * `arrayContainsAny`, `in`, or `notEqual` filter.
+ *
+ * @param field The name of the field to search.
+ * @param values The array that contains the values to match.
+ *
+ * @return The created `FIRQuery`.
+ */
+- (FIRQuery *)queryWhereField:(NSString *)field
+ notIn:(NSArray *)values NS_SWIFT_NAME(whereField(_:notIn:));
+
+/**
+ * Creates and returns a new `FIRQuery` with the additional filter that documents must contain
+ * the specified field and the value does not equal any of the values from the provided array.
+ *
+ * One special case is that `notIn` filters cannot match `nil` values. To query for documents
+ * where a field exists and is `nil`, use a `notEqual` filter, which can handle this special case.
+ *
+ * Passing in a `null` value into the `values` array results in no document matches. To query
+ * for documents where a field is not `null`, use a `notEqual` filter.
+ *
+ * @param path The path of the field to search.
+ * @param values The array that contains the values to match.
+ *
+ * @return The created `FIRQuery`.
+ */
+- (FIRQuery *)queryWhereFieldPath:(FIRFieldPath *)path
+ notIn:(NSArray *)values NS_SWIFT_NAME(whereField(_:notIn:));
+
/**
* Creates and returns a new `FIRQuery` with the additional filter that documents must
* satisfy the specified predicate.
diff --git a/FirebaseFirestore/Resources/gRPCCertificates-Cpp.bundle/Info.plist b/FirebaseFirestore/Resources/gRPCCertificates-Cpp.bundle/Info.plist
index db415668..cceb14a8 100644
Binary files a/FirebaseFirestore/Resources/gRPCCertificates-Cpp.bundle/Info.plist and b/FirebaseFirestore/Resources/gRPCCertificates-Cpp.bundle/Info.plist differ
diff --git a/FirebaseFirestore/abseil.xcframework/Info.plist b/FirebaseFirestore/abseil.xcframework/Info.plist
index db026639..3ed25f4c 100644
--- a/FirebaseFirestore/abseil.xcframework/Info.plist
+++ b/FirebaseFirestore/abseil.xcframework/Info.plist
@@ -6,31 +6,31 @@
LibraryIdentifier
- ios-i386_x86_64-simulator
+ ios-armv7_arm64
LibraryPath
abseil.framework
SupportedArchitectures
- i386
- x86_64
+ armv7
+ arm64
SupportedPlatform
ios
- SupportedPlatformVariant
- simulator
LibraryIdentifier
- ios-armv7_arm64
+ ios-i386_x86_64-simulator
LibraryPath
abseil.framework
SupportedArchitectures
- armv7
- arm64
+ i386
+ x86_64
SupportedPlatform
ios
+ SupportedPlatformVariant
+ simulator
LibraryIdentifier
diff --git a/FirebaseFirestore/abseil.xcframework/ios-armv7_arm64/abseil.framework/abseil b/FirebaseFirestore/abseil.xcframework/ios-armv7_arm64/abseil.framework/abseil
index d7ad5c4b..1597d408 100644
Binary files a/FirebaseFirestore/abseil.xcframework/ios-armv7_arm64/abseil.framework/abseil and b/FirebaseFirestore/abseil.xcframework/ios-armv7_arm64/abseil.framework/abseil differ
diff --git a/FirebaseFirestore/abseil.xcframework/ios-i386_x86_64-simulator/abseil.framework/abseil b/FirebaseFirestore/abseil.xcframework/ios-i386_x86_64-simulator/abseil.framework/abseil
index 334301ff..d2cda99b 100644
Binary files a/FirebaseFirestore/abseil.xcframework/ios-i386_x86_64-simulator/abseil.framework/abseil and b/FirebaseFirestore/abseil.xcframework/ios-i386_x86_64-simulator/abseil.framework/abseil differ
diff --git a/FirebaseFirestore/abseil.xcframework/ios-x86_64-maccatalyst/abseil.framework/abseil b/FirebaseFirestore/abseil.xcframework/ios-x86_64-maccatalyst/abseil.framework/abseil
index fabf6ee9..cd16af55 100644
Binary files a/FirebaseFirestore/abseil.xcframework/ios-x86_64-maccatalyst/abseil.framework/abseil and b/FirebaseFirestore/abseil.xcframework/ios-x86_64-maccatalyst/abseil.framework/abseil differ
diff --git a/FirebaseFirestore/gRPC-C++.xcframework/Info.plist b/FirebaseFirestore/gRPC-C++.xcframework/Info.plist
index 376c8740..239e3596 100644
--- a/FirebaseFirestore/gRPC-C++.xcframework/Info.plist
+++ b/FirebaseFirestore/gRPC-C++.xcframework/Info.plist
@@ -6,45 +6,45 @@
LibraryIdentifier
- ios-i386_x86_64-simulator
+ ios-armv7_arm64
LibraryPath
gRPC-C++.framework
SupportedArchitectures
- i386
- x86_64
+ armv7
+ arm64
SupportedPlatform
ios
- SupportedPlatformVariant
- simulator
LibraryIdentifier
- ios-armv7_arm64
+ ios-x86_64-maccatalyst
LibraryPath
gRPC-C++.framework
SupportedArchitectures
- armv7
- arm64
+ x86_64
SupportedPlatform
ios
+ SupportedPlatformVariant
+ maccatalyst
LibraryIdentifier
- ios-x86_64-maccatalyst
+ ios-i386_x86_64-simulator
LibraryPath
gRPC-C++.framework
SupportedArchitectures
+ i386
x86_64
SupportedPlatform
ios
SupportedPlatformVariant
- maccatalyst
+ simulator
CFBundlePackageType
diff --git a/FirebaseFirestore/gRPC-C++.xcframework/ios-armv7_arm64/gRPC-C++.framework/gRPC-C++ b/FirebaseFirestore/gRPC-C++.xcframework/ios-armv7_arm64/gRPC-C++.framework/gRPC-C++
index c4919761..f396bdac 100644
Binary files a/FirebaseFirestore/gRPC-C++.xcframework/ios-armv7_arm64/gRPC-C++.framework/gRPC-C++ and b/FirebaseFirestore/gRPC-C++.xcframework/ios-armv7_arm64/gRPC-C++.framework/gRPC-C++ differ
diff --git a/FirebaseFirestore/gRPC-C++.xcframework/ios-i386_x86_64-simulator/gRPC-C++.framework/gRPC-C++ b/FirebaseFirestore/gRPC-C++.xcframework/ios-i386_x86_64-simulator/gRPC-C++.framework/gRPC-C++
index 490e1de5..d742a381 100644
Binary files a/FirebaseFirestore/gRPC-C++.xcframework/ios-i386_x86_64-simulator/gRPC-C++.framework/gRPC-C++ and b/FirebaseFirestore/gRPC-C++.xcframework/ios-i386_x86_64-simulator/gRPC-C++.framework/gRPC-C++ differ
diff --git a/FirebaseFirestore/gRPC-C++.xcframework/ios-x86_64-maccatalyst/gRPC-C++.framework/gRPC-C++ b/FirebaseFirestore/gRPC-C++.xcframework/ios-x86_64-maccatalyst/gRPC-C++.framework/gRPC-C++
index 05ec0225..b8743ba7 100644
Binary files a/FirebaseFirestore/gRPC-C++.xcframework/ios-x86_64-maccatalyst/gRPC-C++.framework/gRPC-C++ and b/FirebaseFirestore/gRPC-C++.xcframework/ios-x86_64-maccatalyst/gRPC-C++.framework/gRPC-C++ differ
diff --git a/FirebaseFirestore/gRPC-Core.xcframework/Info.plist b/FirebaseFirestore/gRPC-Core.xcframework/Info.plist
index 123154e5..c47257be 100644
--- a/FirebaseFirestore/gRPC-Core.xcframework/Info.plist
+++ b/FirebaseFirestore/gRPC-Core.xcframework/Info.plist
@@ -6,32 +6,32 @@
LibraryIdentifier
- ios-x86_64-maccatalyst
+ ios-i386_x86_64-simulator
LibraryPath
gRPC-Core.framework
SupportedArchitectures
+ i386
x86_64
SupportedPlatform
ios
SupportedPlatformVariant
- maccatalyst
+ simulator
LibraryIdentifier
- ios-i386_x86_64-simulator
+ ios-x86_64-maccatalyst
LibraryPath
gRPC-Core.framework
SupportedArchitectures
- i386
x86_64
SupportedPlatform
ios
SupportedPlatformVariant
- simulator
+ maccatalyst
LibraryIdentifier
diff --git a/FirebaseFirestore/gRPC-Core.xcframework/ios-armv7_arm64/gRPC-Core.framework/gRPC-Core b/FirebaseFirestore/gRPC-Core.xcframework/ios-armv7_arm64/gRPC-Core.framework/gRPC-Core
index b3636109..5f8e9598 100644
Binary files a/FirebaseFirestore/gRPC-Core.xcframework/ios-armv7_arm64/gRPC-Core.framework/gRPC-Core and b/FirebaseFirestore/gRPC-Core.xcframework/ios-armv7_arm64/gRPC-Core.framework/gRPC-Core differ
diff --git a/FirebaseFirestore/gRPC-Core.xcframework/ios-i386_x86_64-simulator/gRPC-Core.framework/gRPC-Core b/FirebaseFirestore/gRPC-Core.xcframework/ios-i386_x86_64-simulator/gRPC-Core.framework/gRPC-Core
index 2c1df5da..36f3114d 100644
Binary files a/FirebaseFirestore/gRPC-Core.xcframework/ios-i386_x86_64-simulator/gRPC-Core.framework/gRPC-Core and b/FirebaseFirestore/gRPC-Core.xcframework/ios-i386_x86_64-simulator/gRPC-Core.framework/gRPC-Core differ
diff --git a/FirebaseFirestore/gRPC-Core.xcframework/ios-x86_64-maccatalyst/gRPC-Core.framework/gRPC-Core b/FirebaseFirestore/gRPC-Core.xcframework/ios-x86_64-maccatalyst/gRPC-Core.framework/gRPC-Core
index 8ad0a076..6c8dde07 100644
Binary files a/FirebaseFirestore/gRPC-Core.xcframework/ios-x86_64-maccatalyst/gRPC-Core.framework/gRPC-Core and b/FirebaseFirestore/gRPC-Core.xcframework/ios-x86_64-maccatalyst/gRPC-Core.framework/gRPC-Core differ
diff --git a/FirebaseFirestore/leveldb-library.xcframework/ios-armv7_arm64/leveldb-library.framework/leveldb-library b/FirebaseFirestore/leveldb-library.xcframework/ios-armv7_arm64/leveldb-library.framework/leveldb-library
index 733aaef9..e57f627a 100644
Binary files a/FirebaseFirestore/leveldb-library.xcframework/ios-armv7_arm64/leveldb-library.framework/leveldb-library and b/FirebaseFirestore/leveldb-library.xcframework/ios-armv7_arm64/leveldb-library.framework/leveldb-library differ
diff --git a/FirebaseFirestore/leveldb-library.xcframework/ios-i386_x86_64-simulator/leveldb-library.framework/leveldb-library b/FirebaseFirestore/leveldb-library.xcframework/ios-i386_x86_64-simulator/leveldb-library.framework/leveldb-library
index 75ca6a2f..39134e77 100644
Binary files a/FirebaseFirestore/leveldb-library.xcframework/ios-i386_x86_64-simulator/leveldb-library.framework/leveldb-library and b/FirebaseFirestore/leveldb-library.xcframework/ios-i386_x86_64-simulator/leveldb-library.framework/leveldb-library differ
diff --git a/FirebaseFirestore/leveldb-library.xcframework/ios-x86_64-maccatalyst/leveldb-library.framework/leveldb-library b/FirebaseFirestore/leveldb-library.xcframework/ios-x86_64-maccatalyst/leveldb-library.framework/leveldb-library
index 09ba6721..37da7fd3 100644
Binary files a/FirebaseFirestore/leveldb-library.xcframework/ios-x86_64-maccatalyst/leveldb-library.framework/leveldb-library and b/FirebaseFirestore/leveldb-library.xcframework/ios-x86_64-maccatalyst/leveldb-library.framework/leveldb-library differ
diff --git a/README.md b/README.md
index 355f748e..05d287ac 100644
--- a/README.md
+++ b/README.md
@@ -57,6 +57,7 @@ The below are the currently supported Firebase iOS SDK versions of this reposito
> **⚠️ Note:** if you are looking for a new version that is not listed in the supported versions list, examine the upstream release notes for firebase-ios-sdk carefully. This can happen if the firebase-ios-sdk team issues an interim release to solve some urgent problem, but do not run their full release process. If that happens, don't worry - just wait for the next supported version before moving forward, or temporarily de-integrate this pre-compiled framework if you must use the interim version. 6.31.1 is an example of this, with more details [here](https://github.com/firebase/firebase-ios-sdk/pull/6368#issuecomment-685030446) for why it might happen.
+ - [6.33.0](https://github.com/invertase/firestore-ios-sdk-frameworks/releases/tag/6.33.0)
- [6.32.2](https://github.com/invertase/firestore-ios-sdk-frameworks/releases/tag/6.32.2)
- [6.32.0](https://github.com/invertase/firestore-ios-sdk-frameworks/releases/tag/6.32.0)
- [6.31.0](https://github.com/invertase/firestore-ios-sdk-frameworks/releases/tag/6.31.0)