From 096879becc76d89ac6c55537f820c27fc3e29006 Mon Sep 17 00:00:00 2001 From: Tobias Buchholz Date: Thu, 16 Jan 2025 22:05:07 +0100 Subject: [PATCH] Release version 3.1.3 --- docs/analytics.md | 2 ++ docs/auth.md | 2 ++ docs/bundled.md | 2 ++ docs/cloud_messaging.md | 2 ++ docs/crashlytics.md | 2 ++ docs/dynamic_links.md | 2 ++ docs/firestore.md | 3 +++ docs/functions.md | 2 ++ docs/remote_config.md | 2 ++ docs/storage.md | 2 ++ src/Analytics/Analytics.csproj | 2 +- src/Auth/Auth.csproj | 2 +- src/Bundled/Bundled.csproj | 2 +- src/CloudMessaging/CloudMessaging.csproj | 2 +- src/Core/Core.csproj | 2 +- src/Crashlytics/Crashlytics.csproj | 2 +- src/DynamicLinks/DynamicLinks.csproj | 2 +- src/Firestore/Firestore.csproj | 2 +- src/Functions/Functions.csproj | 2 +- src/RemoteConfig/RemoteConfig.csproj | 2 +- src/Storage/Storage.csproj | 2 +- 21 files changed, 32 insertions(+), 11 deletions(-) diff --git a/docs/analytics.md b/docs/analytics.md index f6bdcd4..37f984e 100644 --- a/docs/analytics.md +++ b/docs/analytics.md @@ -31,6 +31,8 @@ Since code should be documenting itself you can also take a look at the followin - [tests/.../AnalyticsFixture.cs](https://github.com/TobiasBuchholz/Plugin.Firebase/blob/master/tests/Plugin.Firebase.IntegrationTests/Analytics/AnalyticsFixture.cs) ## Release notes +- Version 3.1.1 + - Using AdamE.Firebase.iOS.* minimum version 11 - Version 3.1.0 - Update to .net8 - Version 3.0.0 diff --git a/docs/auth.md b/docs/auth.md index d403625..b6eeeb8 100644 --- a/docs/auth.md +++ b/docs/auth.md @@ -71,6 +71,8 @@ Since code should be documenting itself you can also take a look at the followin - [sample/.../AuthService.cs](https://github.com/TobiasBuchholz/Plugin.Firebase/blob/master/sample/Playground/Common/Services/Auth/AuthService.cs) ## Release notes +- Version 3.1.1 + - Using AdamE.Firebase.iOS.* minimum version 11 - Version 3.1.0 - Update to .net8 - Version 3.0.0 diff --git a/docs/bundled.md b/docs/bundled.md index c827208..013824c 100644 --- a/docs/bundled.md +++ b/docs/bundled.md @@ -46,6 +46,8 @@ using Plugin.Firebase.Bundled.Platforms.Android; #endif ``` ## Release notes +- Version 3.1.3 + - Using AdamE.Firebase.iOS.* minimum version 11 - Version 3.1.2 - Plugin.Firebase.Firestore 3.1.1 - Version 3.1.1 diff --git a/docs/cloud_messaging.md b/docs/cloud_messaging.md index 0dfb3e1..741da85 100644 --- a/docs/cloud_messaging.md +++ b/docs/cloud_messaging.md @@ -145,6 +145,8 @@ Note: this is a Plugin.Firebase custom field and hence not documented with googl If you are having trouble receiving push notifications on your device, take a look at this helpful https://github.com/TobiasBuchholz/Plugin.Firebase/issues/145#issuecomment-1455182588 by @andyzukunft. Additionally he has created a dedicated project to simplify the demonstration on how Firebase Cloud Messaging works: https://github.com/andyzukunft/Plugin.Firebase/tree/fcm-demo/sample/Fcm ## Release notes +- Version 3.1.2 + - Using AdamE.Firebase.iOS.* minimum version 11 - Version 3.1.1 - Fix/iOS notifications not playing sound (PR #352) - Version 3.1.0 diff --git a/docs/crashlytics.md b/docs/crashlytics.md index 335568b..074bcb3 100644 --- a/docs/crashlytics.md +++ b/docs/crashlytics.md @@ -42,6 +42,8 @@ Since code should be documenting itself you can also take a look at the followin - [src/.../IFirebaseCrashlytics.cs](https://github.com/TobiasBuchholz/Plugin.Firebase/blob/master/src/Shared/Crashlytics/IFirebaseCrashlytics.cs) ## Release notes +- Version 3.1.1 + - Using AdamE.Firebase.iOS.* minimum version 11 - Version 3.1.0 - Update to .net8 - Version 3.0.0 diff --git a/docs/dynamic_links.md b/docs/dynamic_links.md index a94372c..8a9937c 100644 --- a/docs/dynamic_links.md +++ b/docs/dynamic_links.md @@ -84,6 +84,8 @@ Since code should be documenting itself you can also take a look at the followin - [sample/.../DynamicLinkService.cs](https://github.com/TobiasBuchholz/Plugin.Firebase/blob/master/sample/Playground/Common/Services/DynamicLink/DynamicLinkService.cs) ## Release notes +- Version 3.1.1 + - Using AdamE.Firebase.iOS.* minimum version 11 - Version 3.1.0 - Update to .net8 - Version 3.0.0 diff --git a/docs/firestore.md b/docs/firestore.md index 8ebfb41..20cc6f4 100644 --- a/docs/firestore.md +++ b/docs/firestore.md @@ -80,6 +80,9 @@ Since code should be documenting itself you can also take a look at the followin - [tests/.../FirestoreFixture.cs](https://github.com/TobiasBuchholz/Plugin.Firebase/blob/master/tests/Plugin.Firebase.IntegrationTests/Firestore/FirestoreFixture.cs) ## Release notes +- Version 3.1.2 + - Using AdamE.Firebase.iOS.* minimum version 11 + - Use JavaObject constructor instead of addding individual items - Version 3.1.1 - ToNSObject and ToJavaObject handle null inputs (PR #352) - Fixing IWriteBatch.UpdateData issue where .NET objects were not being converted to NSObjects (PR #351) diff --git a/docs/functions.md b/docs/functions.md index dbe7262..0dd1d67 100644 --- a/docs/functions.md +++ b/docs/functions.md @@ -26,6 +26,8 @@ Since code should be documenting itself you can also take a look at the followin - [tests/cloud-functions/.../index.ts](https://github.com/TobiasBuchholz/Plugin.Firebase/blob/master/tests/cloud-functions/functions/src/index.ts) ## Release notes +- Version 3.1.1 + - Using AdamE.Firebase.iOS.* minimum version 11 - Version 3.1.0 - Update to .net8 - Version 3.0.0 diff --git a/docs/remote_config.md b/docs/remote_config.md index 645308d..352683f 100644 --- a/docs/remote_config.md +++ b/docs/remote_config.md @@ -22,6 +22,8 @@ Since code should be documenting itself you can also take a look at the followin - [tests/.../RemoteConfigFixture.cs](https://github.com/TobiasBuchholz/Plugin.Firebase/blob/master/tests/Plugin.Firebase.IntegrationTests/RemoteConfig/RemoteConfigFixture.cs) ## Release notes +- Version 3.1.1 + - Using AdamE.Firebase.iOS.* minimum version 11 - Version 3.1.0 - Update to .net8 - Version 3.0.0 diff --git a/docs/storage.md b/docs/storage.md index daee733..205b783 100644 --- a/docs/storage.md +++ b/docs/storage.md @@ -26,6 +26,8 @@ Since code should be documenting itself you can also take a look at the followin - [tests/.../StorageFixture.cs](https://github.com/TobiasBuchholz/Plugin.Firebase/blob/master/tests/Plugin.Firebase.IntegrationTests/Firestore/StorageFixture.cs) ## Release notes +- Version 3.1.1 + - Using AdamE.Firebase.iOS.* minimum version 11 - Version 3.1.0 - Update to .net8 - Version 3.0.0 diff --git a/src/Analytics/Analytics.csproj b/src/Analytics/Analytics.csproj index b91b4c6..3854331 100644 --- a/src/Analytics/Analytics.csproj +++ b/src/Analytics/Analytics.csproj @@ -20,7 +20,7 @@ Plugin.Firebase.Analytics - 3.1.0 + 3.1.1 MIT https://github.com/TobiasBuchholz/Plugin.Firebase diff --git a/src/Auth/Auth.csproj b/src/Auth/Auth.csproj index 4412b15..d114ac8 100644 --- a/src/Auth/Auth.csproj +++ b/src/Auth/Auth.csproj @@ -22,7 +22,7 @@ Plugin.Firebase.Auth - 3.1.0 + 3.1.1 MIT https://github.com/TobiasBuchholz/Plugin.Firebase diff --git a/src/Bundled/Bundled.csproj b/src/Bundled/Bundled.csproj index a0664e8..e904a44 100644 --- a/src/Bundled/Bundled.csproj +++ b/src/Bundled/Bundled.csproj @@ -20,7 +20,7 @@ Plugin.Firebase - 3.1.2 + 3.1.3 MIT https://github.com/TobiasBuchholz/Plugin.Firebase diff --git a/src/CloudMessaging/CloudMessaging.csproj b/src/CloudMessaging/CloudMessaging.csproj index ced5cbe..9545568 100644 --- a/src/CloudMessaging/CloudMessaging.csproj +++ b/src/CloudMessaging/CloudMessaging.csproj @@ -20,7 +20,7 @@ Plugin.Firebase.CloudMessaging - 3.1.1 + 3.1.2 MIT https://github.com/TobiasBuchholz/Plugin.Firebase diff --git a/src/Core/Core.csproj b/src/Core/Core.csproj index 8d97246..84643f6 100644 --- a/src/Core/Core.csproj +++ b/src/Core/Core.csproj @@ -20,7 +20,7 @@ Plugin.Firebase.Core - 3.1.0 + 3.1.1 MIT https://github.com/TobiasBuchholz/Plugin.Firebase diff --git a/src/Crashlytics/Crashlytics.csproj b/src/Crashlytics/Crashlytics.csproj index 5e7d93c..1c505fb 100644 --- a/src/Crashlytics/Crashlytics.csproj +++ b/src/Crashlytics/Crashlytics.csproj @@ -20,7 +20,7 @@ Plugin.Firebase.Crashlytics - 3.1.0 + 3.1.1 MIT https://github.com/TobiasBuchholz/Plugin.Firebase diff --git a/src/DynamicLinks/DynamicLinks.csproj b/src/DynamicLinks/DynamicLinks.csproj index 4c940a1..ddf5517 100644 --- a/src/DynamicLinks/DynamicLinks.csproj +++ b/src/DynamicLinks/DynamicLinks.csproj @@ -20,7 +20,7 @@ Plugin.Firebase.DynamicLinks - 3.1.0 + 3.1.1 MIT https://github.com/TobiasBuchholz/Plugin.Firebase diff --git a/src/Firestore/Firestore.csproj b/src/Firestore/Firestore.csproj index d2210bf..21edcc0 100644 --- a/src/Firestore/Firestore.csproj +++ b/src/Firestore/Firestore.csproj @@ -20,7 +20,7 @@ Plugin.Firebase.Firestore - 3.1.1 + 3.1.2 MIT https://github.com/TobiasBuchholz/Plugin.Firebase diff --git a/src/Functions/Functions.csproj b/src/Functions/Functions.csproj index e24d2ea..9e46374 100644 --- a/src/Functions/Functions.csproj +++ b/src/Functions/Functions.csproj @@ -20,7 +20,7 @@ Plugin.Firebase.Functions - 3.1.0 + 3.1.1 MIT https://github.com/TobiasBuchholz/Plugin.Firebase diff --git a/src/RemoteConfig/RemoteConfig.csproj b/src/RemoteConfig/RemoteConfig.csproj index dba8a95..6834b22 100644 --- a/src/RemoteConfig/RemoteConfig.csproj +++ b/src/RemoteConfig/RemoteConfig.csproj @@ -20,7 +20,7 @@ Plugin.Firebase.RemoteConfig - 3.1.0 + 3.1.1 MIT https://github.com/TobiasBuchholz/Plugin.Firebase diff --git a/src/Storage/Storage.csproj b/src/Storage/Storage.csproj index b9767c1..79b9b5a 100644 --- a/src/Storage/Storage.csproj +++ b/src/Storage/Storage.csproj @@ -20,7 +20,7 @@ Plugin.Firebase.Storage - 3.1.0 + 3.1.1 MIT https://github.com/TobiasBuchholz/Plugin.Firebase