Skip to content

Commit

Permalink
Release 19.4.1
Browse files Browse the repository at this point in the history
  • Loading branch information
jyaganeh committed Dec 5, 2024
1 parent 2b8fb78 commit 7fe8f6f
Show file tree
Hide file tree
Showing 6 changed files with 16 additions and 10 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Airship DotNet Changelog

## Version 19.4.1 - Dec 6, 2024
Minor release that updates the Airship.Net package to no longer depend on MAUI.

### Changes
- Removed unnecessary MAUI dependency from Airship.Net

## Version 19.4.0 - July 29, 2024
Minor release that updates the Airship SDK to iOS 17.10.1 and Android 17.8.1.

Expand Down
8 changes: 4 additions & 4 deletions Directory.Build.props
Original file line number Diff line number Diff line change
Expand Up @@ -6,14 +6,14 @@
<PropertyGroup>
<!-- Airship native SDK versions -->
<AirshipAndroidVersion>17.8.1</AirshipAndroidVersion>
<AirshipAndroidNugetVersion>17.8.1</AirshipAndroidNugetVersion>
<AirshipAndroidNugetVersion>17.8.1.1</AirshipAndroidNugetVersion>

<AirshipIosVersion>17.10.1</AirshipIosVersion>
<AirshipIosNugetVersion>17.10.1</AirshipIosNugetVersion>
<AirshipIosNugetVersion>17.10.1.1</AirshipIosNugetVersion>

<!-- Airship.Net version -->
<AirshipCrossPlatformVersion>19.4.0</AirshipCrossPlatformVersion>
<AirshipCrossPlatformNugetVersion>19.4.0</AirshipCrossPlatformNugetVersion>
<AirshipCrossPlatformVersion>19.4.1</AirshipCrossPlatformVersion>
<AirshipCrossPlatformNugetVersion>19.4.1</AirshipCrossPlatformNugetVersion>
</PropertyGroup>

<!-- Nuget packaging metadata -->
Expand Down
6 changes: 3 additions & 3 deletions airship.properties
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ iosVersion = 17.10.1
androidVersion = 17.8.1

# Airship.Net cross-platform version
crossPlatformVersion = 19.4.0
crossPlatformVersion = 19.4.1

# Filename of the iOS SDK zip file
iosFrameworkZip = Airship-Xcode15.zip
Expand All @@ -12,7 +12,7 @@ iosFrameworkZip = Airship-Xcode15.zip
# If > 0, the revision number will be added to the versions
# defined above as a 4th segment (i.e., MAJOR.MINOR.PATCH.REVISION).
# If = 0, NuGet packages will be versioned using standard 3-segment semver.
androidRevision = 0
iosRevision = 0
androidRevision = 1
iosRevision = 1
crossPlatformRevision = 0

2 changes: 1 addition & 1 deletion src/SharedAssemblyInfo.Common.cs
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,4 @@
// Change them to the values specific to your project.

// Cross-platform version of the plugin
[assembly: UACrossPlatformVersion ("19.4.0")]
[assembly: UACrossPlatformVersion ("19.4.1")]
2 changes: 1 addition & 1 deletion src/SharedAssemblyInfo.CrossPlatform.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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.4.0")]
[assembly: AssemblyVersion ("19.4.1")]

2 changes: 1 addition & 1 deletion src/SharedAssemblyInfo.iOS.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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.4.0")]
[assembly: AssemblyVersion ("19.4.1")]

0 comments on commit 7fe8f6f

Please sign in to comment.