Skip to content

Commit fc28eca

Browse files
Firebase 12.9.0 — fixes iOS 26 crash (#109)
* Complete Firebase 12.9.0 release metadata update * Update 12.9 documentation references --------- Co-authored-by: Adam Essenmacher <adam.essenmacher@gmail.com>
1 parent 6df0b09 commit fc28eca

29 files changed

Lines changed: 146 additions & 146 deletions

File tree

Readme.md

Lines changed: 19 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -143,7 +143,7 @@ If your project targets multiple platforms, keep these packages inside Apple-onl
143143

144144
```xml
145145
<ItemGroup Condition="$([MSBuild]::GetTargetPlatformIdentifier('$(TargetFramework)')) == 'ios'">
146-
<PackageReference Include="AdamE.Firebase.iOS.Core" Version="12.8.0" />
146+
<PackageReference Include="AdamE.Firebase.iOS.Core" Version="12.9.0" />
147147
</ItemGroup>
148148
```
149149

@@ -167,30 +167,30 @@ Archiving can still be more reliable on macOS or from the command line.
167167

168168
The lists below reflect what is currently published on [nuget.org](https://www.nuget.org/profiles/adamessenmacher) under the `adamessenmacher` owner profile. That is intentionally different from the repo state in [`components.cake`](components.cake): the repo can contain projects or version bumps that have not been published yet.
169169

170-
Firebase `12.8.0` is the current published Firebase package line.
170+
Firebase `12.9.0` is the current published Firebase package line.
171171

172172
### Currently published on nuget.org
173173

174174
#### Firebase packages (`AdamE.Firebase.iOS.*`)
175175

176176
| Package | Version |
177177
| --- | --- |
178-
| `ABTesting` | `12.8.0` |
179-
| `Analytics` | `12.8.0` |
180-
| `AppCheck` | `12.8.0` |
181-
| `AppDistribution` | `12.8.0` |
182-
| `Auth` | `12.8.0` |
183-
| `CloudFirestore` | `12.8.0` |
184-
| `CloudFunctions` | `12.8.0` |
185-
| `CloudMessaging` | `12.8.0` |
186-
| `Core` | `12.8.0` |
187-
| `Crashlytics` | `12.8.0` |
188-
| `Database` | `12.8.0` |
189-
| `InAppMessaging` | `12.8.0` |
190-
| `Installations` | `12.8.0` |
191-
| `PerformanceMonitoring` | `12.8.0` |
192-
| `RemoteConfig` | `12.8.0` |
193-
| `Storage` | `12.8.0` |
178+
| `ABTesting` | `12.9.0` |
179+
| `Analytics` | `12.9.0` |
180+
| `AppCheck` | `12.9.0` |
181+
| `AppDistribution` | `12.9.0` |
182+
| `Auth` | `12.9.0` |
183+
| `CloudFirestore` | `12.9.0` |
184+
| `CloudFunctions` | `12.9.0` |
185+
| `CloudMessaging` | `12.9.0` |
186+
| `Core` | `12.9.0` |
187+
| `Crashlytics` | `12.9.0` |
188+
| `Database` | `12.9.0` |
189+
| `InAppMessaging` | `12.9.0` |
190+
| `Installations` | `12.9.0` |
191+
| `PerformanceMonitoring` | `12.9.0` |
192+
| `RemoteConfig` | `12.9.0` |
193+
| `Storage` | `12.9.0` |
194194

195195
#### Google packages (`AdamE.Google.iOS.*`)
196196

@@ -207,7 +207,7 @@ These packages are usually consumed transitively rather than referenced directly
207207
| Package | Version |
208208
| --- | --- |
209209
| `AppCheckCore` | `11.2.0` |
210-
| `GoogleAppMeasurement` | `12.8.0` |
210+
| `GoogleAppMeasurement` | `12.9.0` |
211211
| `GoogleDataTransport` | `10.1.0.5` |
212212
| `GoogleUtilities` | `8.1.0.3` |
213213
| `Nanopb` | `3.30910.0.5` |

components.cake

Lines changed: 43 additions & 43 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,20 @@
11
// Firebase artifacts available to be built. These artifacts generate NuGets.
2-
Artifact FIREBASE_AB_TESTING_ARTIFACT = new Artifact ("Firebase.ABTesting", "12.8.0", "15.0", ComponentGroup.Firebase, csprojName: "ABTesting");
3-
Artifact FIREBASE_ANALYTICS_ARTIFACT = new Artifact ("Firebase.Analytics", "12.8.0", "15.0", ComponentGroup.Firebase, csprojName: "Analytics");
4-
Artifact FIREBASE_AUTH_ARTIFACT = new Artifact ("Firebase.Auth", "12.8.0", "15.0", ComponentGroup.Firebase, csprojName: "Auth");
5-
Artifact FIREBASE_CLOUD_FIRESTORE_ARTIFACT = new Artifact ("Firebase.CloudFirestore", "12.8.0", "15.0", ComponentGroup.Firebase, csprojName: "CloudFirestore");
6-
Artifact FIREBASE_CLOUD_FUNCTIONS_ARTIFACT = new Artifact ("Firebase.CloudFunctions", "12.8.0", "15.0", ComponentGroup.Firebase, csprojName: "CloudFunctions");
7-
Artifact FIREBASE_CLOUD_MESSAGING_ARTIFACT = new Artifact ("Firebase.CloudMessaging", "12.8.0", "15.0", ComponentGroup.Firebase, csprojName: "CloudMessaging");
8-
Artifact FIREBASE_CORE_ARTIFACT = new Artifact ("Firebase.Core", "12.8.0", "15.0", ComponentGroup.Firebase, csprojName: "Core");
9-
Artifact FIREBASE_CRASHLYTICS_ARTIFACT = new Artifact ("Firebase.Crashlytics", "12.8.0", "15.0", ComponentGroup.Firebase, csprojName: "Crashlytics");
10-
Artifact FIREBASE_DATABASE_ARTIFACT = new Artifact ("Firebase.Database", "12.8.0", "15.0", ComponentGroup.Firebase, csprojName: "Database");
11-
Artifact FIREBASE_IN_APP_MESSAGING_ARTIFACT = new Artifact ("Firebase.InAppMessaging", "12.8.0", "15.0", ComponentGroup.Firebase, csprojName: "InAppMessaging");
12-
Artifact FIREBASE_INSTALLATIONS_ARTIFACT = new Artifact ("Firebase.Installations", "12.8.0", "15.0", ComponentGroup.Firebase, csprojName: "Installations");
13-
Artifact FIREBASE_PERFORMANCE_MONITORING_ARTIFACT = new Artifact ("Firebase.PerformanceMonitoring", "12.8.0", "15.0", ComponentGroup.Firebase, csprojName: "PerformanceMonitoring");
14-
Artifact FIREBASE_REMOTE_CONFIG_ARTIFACT = new Artifact ("Firebase.RemoteConfig", "12.8.0", "15.0", ComponentGroup.Firebase, csprojName: "RemoteConfig");
15-
Artifact FIREBASE_STORAGE_ARTIFACT = new Artifact ("Firebase.Storage", "12.8.0", "15.0", ComponentGroup.Firebase, csprojName: "Storage");
16-
Artifact FIREBASE_APP_DISTRIBUTION_ARTIFACT = new Artifact ("Firebase.AppDistribution", "12.8.0", "15.0", ComponentGroup.Firebase, csprojName: "AppDistribution");
17-
Artifact FIREBASE_APP_CHECK_ARTIFACT = new Artifact ("Firebase.AppCheck", "12.8.0", "15.0", ComponentGroup.Firebase, csprojName: "AppCheck");
2+
Artifact FIREBASE_AB_TESTING_ARTIFACT = new Artifact ("Firebase.ABTesting", "12.9.0", "15.0", ComponentGroup.Firebase, csprojName: "ABTesting");
3+
Artifact FIREBASE_ANALYTICS_ARTIFACT = new Artifact ("Firebase.Analytics", "12.9.0", "15.0", ComponentGroup.Firebase, csprojName: "Analytics");
4+
Artifact FIREBASE_AUTH_ARTIFACT = new Artifact ("Firebase.Auth", "12.9.0", "15.0", ComponentGroup.Firebase, csprojName: "Auth");
5+
Artifact FIREBASE_CLOUD_FIRESTORE_ARTIFACT = new Artifact ("Firebase.CloudFirestore", "12.9.0", "15.0", ComponentGroup.Firebase, csprojName: "CloudFirestore");
6+
Artifact FIREBASE_CLOUD_FUNCTIONS_ARTIFACT = new Artifact ("Firebase.CloudFunctions", "12.9.0", "15.0", ComponentGroup.Firebase, csprojName: "CloudFunctions");
7+
Artifact FIREBASE_CLOUD_MESSAGING_ARTIFACT = new Artifact ("Firebase.CloudMessaging", "12.9.0", "15.0", ComponentGroup.Firebase, csprojName: "CloudMessaging");
8+
Artifact FIREBASE_CORE_ARTIFACT = new Artifact ("Firebase.Core", "12.9.0", "15.0", ComponentGroup.Firebase, csprojName: "Core");
9+
Artifact FIREBASE_CRASHLYTICS_ARTIFACT = new Artifact ("Firebase.Crashlytics", "12.9.0", "15.0", ComponentGroup.Firebase, csprojName: "Crashlytics");
10+
Artifact FIREBASE_DATABASE_ARTIFACT = new Artifact ("Firebase.Database", "12.9.0", "15.0", ComponentGroup.Firebase, csprojName: "Database");
11+
Artifact FIREBASE_IN_APP_MESSAGING_ARTIFACT = new Artifact ("Firebase.InAppMessaging", "12.9.0", "15.0", ComponentGroup.Firebase, csprojName: "InAppMessaging");
12+
Artifact FIREBASE_INSTALLATIONS_ARTIFACT = new Artifact ("Firebase.Installations", "12.9.0", "15.0", ComponentGroup.Firebase, csprojName: "Installations");
13+
Artifact FIREBASE_PERFORMANCE_MONITORING_ARTIFACT = new Artifact ("Firebase.PerformanceMonitoring", "12.9.0", "15.0", ComponentGroup.Firebase, csprojName: "PerformanceMonitoring");
14+
Artifact FIREBASE_REMOTE_CONFIG_ARTIFACT = new Artifact ("Firebase.RemoteConfig", "12.9.0", "15.0", ComponentGroup.Firebase, csprojName: "RemoteConfig");
15+
Artifact FIREBASE_STORAGE_ARTIFACT = new Artifact ("Firebase.Storage", "12.9.0", "15.0", ComponentGroup.Firebase, csprojName: "Storage");
16+
Artifact FIREBASE_APP_DISTRIBUTION_ARTIFACT = new Artifact ("Firebase.AppDistribution", "12.9.0", "15.0", ComponentGroup.Firebase, csprojName: "AppDistribution");
17+
Artifact FIREBASE_APP_CHECK_ARTIFACT = new Artifact ("Firebase.AppCheck", "12.9.0", "15.0", ComponentGroup.Firebase, csprojName: "AppCheck");
1818

1919
// Google artifacts available to be built. These artifacts generate NuGets.
2020
Artifact GOOGLE_ANALYTICS_ARTIFACT = new Artifact ("Google.Analytics", "3.20.0.2", "15.0", ComponentGroup.Google, csprojName: "Analytics");
@@ -26,7 +26,7 @@ Artifact GOOGLE_APP_CHECK_CORE_ARTIFACT = new Artifact ("Google.AppCh
2626
Artifact GOOGLE_SIGN_IN_ARTIFACT = new Artifact ("Google.SignIn", "9.0.0.0", "15.0", ComponentGroup.Google, csprojName: "SignIn");
2727
Artifact GOOGLE_TAG_MANAGER_ARTIFACT = new Artifact ("Google.TagManager", "7.4.0.2", "15.0", ComponentGroup.Google, csprojName: "TagManager");
2828

29-
Artifact GOOGLE_GOOGLE_APP_MEASUREMENT_ARTIFACT = new Artifact ("Google.AppMeasurement", "12.8.0", "15.0", ComponentGroup.Google, csprojName: "GoogleAppMeasurement");
29+
Artifact GOOGLE_GOOGLE_APP_MEASUREMENT_ARTIFACT = new Artifact ("Google.AppMeasurement", "12.9.0", "15.0", ComponentGroup.Google, csprojName: "GoogleAppMeasurement");
3030
Artifact GOOGLE_PROMISES_OBJC_ARTIFACT = new Artifact ("Google.PromisesObjC", "2.4.0.5", "15.0", ComponentGroup.Google, csprojName: "PromisesObjC");
3131
Artifact GOOGLE_GTM_SESSION_FETCHER_ARTIFACT = new Artifact ("Google.GTMSessionFetcher", "3.5.0.5", "15.0", ComponentGroup.Google, csprojName: "GTMSessionFetcher");
3232
Artifact GOOGLE_NANOPB_ARTIFACT = new Artifact ("Google.Nanopb", "3.30910.0.5", "15.0", ComponentGroup.Google, csprojName: "Nanopb");
@@ -148,68 +148,68 @@ void SetArtifactsPodSpecs ()
148148
{
149149
// Firebase components
150150
FIREBASE_AB_TESTING_ARTIFACT.PodSpecs = new [] {
151-
PodSpec.Create ("FirebaseABTesting", "12.8.0", frameworkSource: FrameworkSource.Pods)
151+
PodSpec.Create ("FirebaseABTesting", "12.9.0", frameworkSource: FrameworkSource.Pods)
152152
};
153153
FIREBASE_ANALYTICS_ARTIFACT.PodSpecs = new [] {
154-
PodSpec.Create ("FirebaseAnalytics", "12.8.0")
154+
PodSpec.Create ("FirebaseAnalytics", "12.9.0")
155155
};
156156
FIREBASE_AUTH_ARTIFACT.PodSpecs = new [] {
157-
PodSpec.Create ("FirebaseAuth", "12.8.0", frameworkSource: FrameworkSource.Pods),
157+
PodSpec.Create ("FirebaseAuth", "12.9.0", frameworkSource: FrameworkSource.Pods),
158158
PodSpec.Create ("RecaptchaInterop", "101.0.0", frameworkSource: FrameworkSource.Pods)
159159
};
160160
FIREBASE_CLOUD_FIRESTORE_ARTIFACT.PodSpecs = new [] {
161-
PodSpec.Create ("FirebaseFirestore", "12.8.0", frameworkSource: FrameworkSource.Pods),
162-
PodSpec.Create ("FirebaseFirestoreInternal", "12.8.0", frameworkSource: FrameworkSource.Pods),
161+
PodSpec.Create ("FirebaseFirestore", "12.9.0", frameworkSource: FrameworkSource.Pods),
162+
PodSpec.Create ("FirebaseFirestoreInternal", "12.9.0", frameworkSource: FrameworkSource.Pods),
163163
PodSpec.Create ("BoringSSL-GRPC", "0.0.37", frameworkSource: FrameworkSource.Pods, frameworkName: "openssl_grpc"),
164164
PodSpec.Create ("gRPC-Core", "1.69.0", frameworkSource: FrameworkSource.Pods, frameworkName: "grpc"),
165165
PodSpec.Create ("gRPC-C++", "1.69.0", frameworkSource: FrameworkSource.Pods, frameworkName: "grpcpp"),
166166
PodSpec.Create ("abseil", "1.20240722.0", frameworkSource: FrameworkSource.Pods, frameworkName: "absl", subSpecs: new [] { "algorithm", "base", "memory", "meta", "strings", "time", "types" }),
167167
};
168168
FIREBASE_CLOUD_FUNCTIONS_ARTIFACT.PodSpecs = new [] {
169-
PodSpec.Create ("FirebaseFunctions", "12.8.0", frameworkSource: FrameworkSource.Pods)
169+
PodSpec.Create ("FirebaseFunctions", "12.9.0", frameworkSource: FrameworkSource.Pods)
170170
};
171171
FIREBASE_CLOUD_MESSAGING_ARTIFACT.PodSpecs = new [] {
172-
PodSpec.Create ("FirebaseMessaging", "12.8.0", frameworkSource: FrameworkSource.Pods)
172+
PodSpec.Create ("FirebaseMessaging", "12.9.0", frameworkSource: FrameworkSource.Pods)
173173
};
174174
FIREBASE_CORE_ARTIFACT.PodSpecs = new [] {
175-
PodSpec.Create ("FirebaseAppCheckInterop", "12.8.0", frameworkSource: FrameworkSource.Pods),
176-
PodSpec.Create ("FirebaseAuthInterop", "12.8.0", frameworkSource: FrameworkSource.Pods),
177-
PodSpec.Create ("FirebaseCore", "12.8.0", frameworkSource: FrameworkSource.Pods),
178-
PodSpec.Create ("FirebaseCoreExtension", "12.8.0", frameworkSource: FrameworkSource.Pods),
179-
PodSpec.Create ("FirebaseCoreInternal", "12.8.0", frameworkSource: FrameworkSource.Pods),
180-
PodSpec.Create ("FirebaseMessagingInterop", "12.8.0", frameworkSource: FrameworkSource.Pods),
181-
PodSpec.Create ("FirebaseRemoteConfigInterop", "12.8.0", frameworkSource: FrameworkSource.Pods),
182-
PodSpec.Create ("FirebaseSharedSwift", "12.8.0", frameworkSource: FrameworkSource.Pods),
175+
PodSpec.Create ("FirebaseAppCheckInterop", "12.9.0", frameworkSource: FrameworkSource.Pods),
176+
PodSpec.Create ("FirebaseAuthInterop", "12.9.0", frameworkSource: FrameworkSource.Pods),
177+
PodSpec.Create ("FirebaseCore", "12.9.0", frameworkSource: FrameworkSource.Pods),
178+
PodSpec.Create ("FirebaseCoreExtension", "12.9.0", frameworkSource: FrameworkSource.Pods),
179+
PodSpec.Create ("FirebaseCoreInternal", "12.9.0", frameworkSource: FrameworkSource.Pods),
180+
PodSpec.Create ("FirebaseMessagingInterop", "12.9.0", frameworkSource: FrameworkSource.Pods),
181+
PodSpec.Create ("FirebaseRemoteConfigInterop", "12.9.0", frameworkSource: FrameworkSource.Pods),
182+
PodSpec.Create ("FirebaseSharedSwift", "12.9.0", frameworkSource: FrameworkSource.Pods),
183183
PodSpec.Create ("PromisesSwift", "2.4.0", frameworkSource: FrameworkSource.Pods, frameworkName: "Promises", targetName: "PromisesSwift"),
184184
PodSpec.Create ("leveldb-library", "1.22.6", frameworkSource: FrameworkSource.Pods, frameworkName: "leveldb"),
185185
};
186186
FIREBASE_CRASHLYTICS_ARTIFACT.PodSpecs = new [] {
187-
PodSpec.Create ("FirebaseCrashlytics", "12.8.0", frameworkSource: FrameworkSource.Pods)
187+
PodSpec.Create ("FirebaseCrashlytics", "12.9.0", frameworkSource: FrameworkSource.Pods)
188188
};
189189
FIREBASE_DATABASE_ARTIFACT.PodSpecs = new [] {
190-
PodSpec.Create ("FirebaseDatabase", "12.8.0", frameworkSource: FrameworkSource.Pods)
190+
PodSpec.Create ("FirebaseDatabase", "12.9.0", frameworkSource: FrameworkSource.Pods)
191191
};
192192
FIREBASE_IN_APP_MESSAGING_ARTIFACT.PodSpecs = new [] {
193-
PodSpec.Create ("Firebase", "12.8.0", frameworkSource: FrameworkSource.Pods, frameworkName: "FirebaseInAppMessaging", targetName: "FirebaseInAppMessaging", subSpecs: new [] { "InAppMessaging" })
193+
PodSpec.Create ("Firebase", "12.9.0", frameworkSource: FrameworkSource.Pods, frameworkName: "FirebaseInAppMessaging", targetName: "FirebaseInAppMessaging", subSpecs: new [] { "InAppMessaging" })
194194
};
195195
FIREBASE_INSTALLATIONS_ARTIFACT.PodSpecs = new [] {
196-
PodSpec.Create ("FirebaseInstallations", "12.8.0", frameworkSource: FrameworkSource.Pods),
197-
PodSpec.Create ("FirebaseSessions", "12.8.0", frameworkSource: FrameworkSource.Pods)
196+
PodSpec.Create ("FirebaseInstallations", "12.9.0", frameworkSource: FrameworkSource.Pods),
197+
PodSpec.Create ("FirebaseSessions", "12.9.0", frameworkSource: FrameworkSource.Pods)
198198
};
199199
FIREBASE_PERFORMANCE_MONITORING_ARTIFACT.PodSpecs = new [] {
200-
PodSpec.Create ("FirebasePerformance", "12.8.0", frameworkSource: FrameworkSource.Pods)
200+
PodSpec.Create ("FirebasePerformance", "12.9.0", frameworkSource: FrameworkSource.Pods)
201201
};
202202
FIREBASE_REMOTE_CONFIG_ARTIFACT.PodSpecs = new [] {
203-
PodSpec.Create ("FirebaseRemoteConfig", "12.8.0", frameworkSource: FrameworkSource.Pods)
203+
PodSpec.Create ("FirebaseRemoteConfig", "12.9.0", frameworkSource: FrameworkSource.Pods)
204204
};
205205
FIREBASE_STORAGE_ARTIFACT.PodSpecs = new [] {
206-
PodSpec.Create ("FirebaseStorage", "12.8.0", frameworkSource: FrameworkSource.Pods)
206+
PodSpec.Create ("FirebaseStorage", "12.9.0", frameworkSource: FrameworkSource.Pods)
207207
};
208208
FIREBASE_APP_DISTRIBUTION_ARTIFACT.PodSpecs = new [] {
209-
PodSpec.Create ("Firebase", "12.8.0", frameworkSource: FrameworkSource.Pods, frameworkName: "FirebaseAppDistribution", targetName: "FirebaseAppDistribution", subSpecs: new [] { "AppDistribution" })
209+
PodSpec.Create ("Firebase", "12.9.0", frameworkSource: FrameworkSource.Pods, frameworkName: "FirebaseAppDistribution", targetName: "FirebaseAppDistribution", subSpecs: new [] { "AppDistribution" })
210210
};
211211
FIREBASE_APP_CHECK_ARTIFACT.PodSpecs = new [] {
212-
PodSpec.Create ("FirebaseAppCheck", "12.8.0", frameworkSource: FrameworkSource.Pods)
212+
PodSpec.Create ("FirebaseAppCheck", "12.9.0", frameworkSource: FrameworkSource.Pods)
213213
};
214214

215215
// Google components
@@ -240,7 +240,7 @@ void SetArtifactsPodSpecs ()
240240
PodSpec.Create ("GoogleTagManager", "7.4.0")
241241
};
242242
GOOGLE_GOOGLE_APP_MEASUREMENT_ARTIFACT.PodSpecs = new [] {
243-
PodSpec.Create ("GoogleAppMeasurement", "12.8.0")
243+
PodSpec.Create ("GoogleAppMeasurement", "12.9.0")
244244
};
245245
GOOGLE_PROMISES_OBJC_ARTIFACT.PodSpecs = new [] {
246246
PodSpec.Create ("PromisesObjC", "2.4.0", frameworkSource: FrameworkSource.Pods, frameworkName: "FBLPromises", targetName: "PromisesObjC"),

scripts/FirebaseBindingAudit/BindingSurfaceCoverage.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ namespace FirebaseBindingAudit;
1010

1111
internal static class FirebasePackageVersions
1212
{
13-
public const string DefaultFirebasePackageVersion = "12.8.0";
13+
public const string DefaultFirebasePackageVersion = "12.9.0";
1414
}
1515

1616
internal sealed class BindingSurfaceCoverageManifest

source/Firebase/ABTesting/ABTesting.csproj

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@
88
<SupportedOSPlatformVersion>15.0</SupportedOSPlatformVersion>
99
<RootNamespace>Firebase.ABTesting</RootNamespace>
1010
<AssemblyName>Firebase.ABTesting</AssemblyName>
11-
<AssemblyVersion>12.8.0</AssemblyVersion>
12-
<FileVersion>12.8.0</FileVersion>
11+
<AssemblyVersion>12.9.0</AssemblyVersion>
12+
<FileVersion>12.9.0</FileVersion>
1313
<IPhoneResourcePrefix>Resources</IPhoneResourcePrefix>
1414
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
1515
<CompressBindingResourcePackage>true</CompressBindingResourcePackage>
@@ -27,7 +27,7 @@
2727
<PackageLicenseFile>License.md</PackageLicenseFile>
2828
<PackageReadmeFile>NUGET_README.md</PackageReadmeFile>
2929
<PackageRequireLicenseAcceptance>true</PackageRequireLicenseAcceptance>
30-
<PackageVersion>12.8.0</PackageVersion>
30+
<PackageVersion>12.9.0</PackageVersion>
3131
</PropertyGroup>
3232
<ItemGroup>
3333
<Compile Include="..\..\AssemblyInfo.cs" />

source/Firebase/Analytics/Analytics.csproj

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@
88
<SupportedOSPlatformVersion>15.0</SupportedOSPlatformVersion>
99
<RootNamespace>Firebase.Analytics</RootNamespace>
1010
<AssemblyName>Firebase.Analytics</AssemblyName>
11-
<AssemblyVersion>12.8.0</AssemblyVersion>
12-
<FileVersion>12.8.0</FileVersion>
11+
<AssemblyVersion>12.9.0</AssemblyVersion>
12+
<FileVersion>12.9.0</FileVersion>
1313
<IPhoneResourcePrefix>Resources</IPhoneResourcePrefix>
1414
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
1515
<ProcessEnums>true</ProcessEnums>
@@ -28,7 +28,7 @@
2828
<PackageLicenseFile>License.md</PackageLicenseFile>
2929
<PackageReadmeFile>NUGET_README.md</PackageReadmeFile>
3030
<PackageRequireLicenseAcceptance>true</PackageRequireLicenseAcceptance>
31-
<PackageVersion>12.8.0</PackageVersion>
31+
<PackageVersion>12.9.0</PackageVersion>
3232
</PropertyGroup>
3333
<ItemGroup>
3434
<Compile Include="..\..\AssemblyInfo.cs" />
@@ -57,7 +57,7 @@
5757
<ObjcBindingApiDefinition Include="Enums.cs" />
5858
</ItemGroup>
5959
<ItemGroup>
60-
<PackageReference Include="AdamE.Google.iOS.GoogleAppMeasurement" Version="12.8.0" />
60+
<PackageReference Include="AdamE.Google.iOS.GoogleAppMeasurement" Version="12.9.0" />
6161
</ItemGroup>
6262
<ItemGroup>
6363
<ProjectReference Include="..\Core\Core.csproj" PrivateAssets="None" />
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<Project>
22
<PropertyGroup>
3-
<_FirebaseAnalyticsAssemblyName>Firebase.Analytics, Version=12.8.0, Culture=neutral, PublicKeyToken=null</_FirebaseAnalyticsAssemblyName>
3+
<_FirebaseAnalyticsAssemblyName>Firebase.Analytics, Version=12.9.0, Culture=neutral, PublicKeyToken=null</_FirebaseAnalyticsAssemblyName>
44
</PropertyGroup>
55
</Project>

0 commit comments

Comments
 (0)