diff --git a/CHANGELOG.md b/CHANGELOG.md index aa5b31a..6b7f92d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,7 +1,14 @@ # Airship DotNet Changelog +## Version 19.4.0 - July 29, 2024 +Minor release that updates the Airship SDK to iOS 17.10.1 and Android 17.8.1. + +### Changes +- Updated iOS SDK to 17.10.1 +- Updated Android SDK to 17.8.1 + ## Version 19.3.0 - Apr 8, 2024 -Minor release that updates the Airship SDK to iOS 17.10.0 and Android 17.7.4, +Minor release that updates the Airship SDK to iOS 17.10.0 and Android 17.7.4. ### Changes - Updated iOS SDK to 17.10.0 diff --git a/Cartfile b/Cartfile index e538a23..f30abf3 100644 --- a/Cartfile +++ b/Cartfile @@ -1 +1 @@ -github "urbanairship/ios-library" == 17.10.0 +github "urbanairship/ios-library" == 17.10.1 diff --git a/Directory.Build.props b/Directory.Build.props index d859c43..bdefdaf 100644 --- a/Directory.Build.props +++ b/Directory.Build.props @@ -5,15 +5,15 @@ - 17.7.4 - 17.7.4 + 17.8.1 + 17.8.1 - 17.10.0 - 17.10.0 + 17.10.1 + 17.10.1 - 19.3.0 - 19.3.0 + 19.4.0 + 19.4.0 diff --git a/airship.properties b/airship.properties index 2fa0e90..3eb764d 100644 --- a/airship.properties +++ b/airship.properties @@ -1,12 +1,12 @@ # Airship native SDK versions -iosVersion = 17.10.0 -androidVersion = 17.7.4 +iosVersion = 17.10.1 +androidVersion = 17.8.1 # Airship.Net cross-platform version -crossPlatformVersion = 19.3.0 +crossPlatformVersion = 19.4.0 # Filename of the iOS SDK zip file -iosFrameworkZip = Airship.zip +iosFrameworkZip = Airship-Xcode15.zip # NuGet package revision numbers # If > 0, the revision number will be added to the versions diff --git a/binderator/config.json b/binderator/config.json index 335a9ec..0baf5c3 100644 --- a/binderator/config.json +++ b/binderator/config.json @@ -17,72 +17,72 @@ { "groupId": "com.urbanairship.android", "artifactId": "urbanairship-adm", - "version": "17.7.4", - "nugetVersion": "17.7.4", + "version": "17.8.1", + "nugetVersion": "17.8.1", "nugetId": "Airship.Net.Android.Adm", "dependencyOnly": false }, { "groupId": "com.urbanairship.android", "artifactId": "urbanairship-automation", - "version": "17.7.4", - "nugetVersion": "17.7.4", + "version": "17.8.1", + "nugetVersion": "17.8.1", "nugetId": "Airship.Net.Android.Automation", "dependencyOnly": false }, { "groupId": "com.urbanairship.android", "artifactId": "urbanairship-core", - "version": "17.7.4", - "nugetVersion": "17.7.4", + "version": "17.8.1", + "nugetVersion": "17.8.1", "nugetId": "Airship.Net.Android.Core", "dependencyOnly": false }, { "groupId": "com.urbanairship.android", "artifactId": "urbanairship-fcm", - "version": "17.7.4", - "nugetVersion": "17.7.4", + "version": "17.8.1", + "nugetVersion": "17.8.1", "nugetId": "Airship.Net.Android.Fcm", "dependencyOnly": false }, { "groupId": "com.urbanairship.android", "artifactId": "urbanairship-feature-flag", - "version": "17.7.4", - "nugetVersion": "17.7.4", + "version": "17.8.1", + "nugetVersion": "17.8.1", "nugetId": "Airship.Net.Android.FeatureFlag", "dependencyOnly": false }, { "groupId": "com.urbanairship.android", "artifactId": "urbanairship-layout", - "version": "17.7.4", - "nugetVersion": "17.7.4", + "version": "17.8.1", + "nugetVersion": "17.8.1", "nugetId": "Airship.Net.Android.Layout", "dependencyOnly": false }, { "groupId": "com.urbanairship.android", "artifactId": "urbanairship-live-update", - "version": "17.7.4", - "nugetVersion": "17.7.4", + "version": "17.8.1", + "nugetVersion": "17.8.1", "nugetId": "Airship.Net.Android.LiveUpdate", "dependencyOnly": false }, { "groupId": "com.urbanairship.android", "artifactId": "urbanairship-message-center", - "version": "17.7.4", - "nugetVersion": "17.7.4", + "version": "17.8.1", + "nugetVersion": "17.8.1", "nugetId": "Airship.Net.Android.MessageCenter", "dependencyOnly": false }, { "groupId": "com.urbanairship.android", "artifactId": "urbanairship-preference-center", - "version": "17.7.4", - "nugetVersion": "17.7.4", + "version": "17.8.1", + "nugetVersion": "17.8.1", "nugetId": "Airship.Net.Android.PreferenceCenter", "dependencyOnly": false }, diff --git a/src/SharedAssemblyInfo.Common.cs b/src/SharedAssemblyInfo.Common.cs index 976b709..fd25fbd 100644 --- a/src/SharedAssemblyInfo.Common.cs +++ b/src/SharedAssemblyInfo.Common.cs @@ -6,4 +6,4 @@ // Change them to the values specific to your project. // Cross-platform version of the plugin -[assembly: UACrossPlatformVersion ("19.3.0")] +[assembly: UACrossPlatformVersion ("19.4.0")] diff --git a/src/SharedAssemblyInfo.CrossPlatform.cs b/src/SharedAssemblyInfo.CrossPlatform.cs index 15412e1..f91216a 100644 --- a/src/SharedAssemblyInfo.CrossPlatform.cs +++ b/src/SharedAssemblyInfo.CrossPlatform.cs @@ -12,5 +12,5 @@ // The form "{Major}.{Minor}.*" will automatically update the build and revision, // and "{Major}.{Minor}.{Build}.*" will update just the revision. -[assembly: AssemblyVersion ("19.3.0")] +[assembly: AssemblyVersion ("19.4.0")] diff --git a/src/SharedAssemblyInfo.iOS.cs b/src/SharedAssemblyInfo.iOS.cs index b2759d9..3929fae 100644 --- a/src/SharedAssemblyInfo.iOS.cs +++ b/src/SharedAssemblyInfo.iOS.cs @@ -17,4 +17,4 @@ // The form "{Major}.{Minor}.*" will automatically update the build and revision, // and "{Major}.{Minor}.{Build}.*" will update just the revision. -[assembly: AssemblyVersion ("19.3.0")] +[assembly: AssemblyVersion ("19.4.0")]