Skip to content

Commit

Permalink
Release 16.10.4 (#2634)
Browse files Browse the repository at this point in the history
* [MOBILE-3366] Fix pager next enable behavior

* Release 16.10.4
  • Loading branch information
rlepinski authored Nov 22, 2022
1 parent 106dc34 commit f3c3c49
Show file tree
Hide file tree
Showing 9 changed files with 14 additions and 8 deletions.
2 changes: 1 addition & 1 deletion Airship.podspec
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
AIRSHIP_VERSION="16.10.3"
AIRSHIP_VERSION="16.10.4"

Pod::Spec.new do |s|
s.version = AIRSHIP_VERSION
Expand Down
2 changes: 1 addition & 1 deletion Airship/AirshipConfig.xcconfig
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
//* Copyright Airship and Contributors */

CURRENT_PROJECT_VERSION = 16.10.3
CURRENT_PROJECT_VERSION = 16.10.4

// Uncomment to include the preview build warning
// OTHER_CFLAGS = $(inherited) -DUA_PREVIEW=1
2 changes: 1 addition & 1 deletion Airship/AirshipCore/Source/AirshipVersion.swift
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import Foundation;

@objc(UAirshipVersion)
public class AirshipVersion : NSObject {
public static let version = "16.10.3"
public static let version = "16.10.4"

@objc
public class func get() -> String {
Expand Down
2 changes: 1 addition & 1 deletion Airship/AirshipCore/Source/EnableBehaviorModifiers.swift
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ extension View {
}

if behaviors.contains(.pagerNext) {
PagerPreviousButtonEnableBehavior(onApply: onApply)
PagerNextButtonEnableBehavior(onApply: onApply)
}

if behaviors.contains(.pagerPrevious) {
Expand Down
2 changes: 1 addition & 1 deletion AirshipContentExtension.podspec
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
AIRSHIP_VERSION="16.10.3"
AIRSHIP_VERSION="16.10.4"

Pod::Spec.new do |s|
s.version = AIRSHIP_VERSION
Expand Down
2 changes: 1 addition & 1 deletion AirshipDebug.podspec
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
AIRSHIP_VERSION="16.10.3"
AIRSHIP_VERSION="16.10.4"

Pod::Spec.new do |s|
s.version = AIRSHIP_VERSION
Expand Down
2 changes: 1 addition & 1 deletion AirshipExtensions.podspec
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
AIRSHIP_VERSION="16.10.3"
AIRSHIP_VERSION="16.10.4"

Pod::Spec.new do |s|
s.version = AIRSHIP_VERSION
Expand Down
2 changes: 1 addition & 1 deletion AirshipServiceExtension.podspec
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
AIRSHIP_VERSION="16.10.3"
AIRSHIP_VERSION="16.10.4"

Pod::Spec.new do |s|
s.version = AIRSHIP_VERSION
Expand Down
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,12 @@

[Migration Guides](https://github.com/urbanairship/ios-library/tree/main/Documentation/Migration)

## Version 16.10.4 November 22, 2022
Patch release that fixes a regression with Scenes and Surveys next page button enablement. Apps on 16.10.1-16.10.3 that use Scenes & Surveys should update.

### Changes
- Fix pager button enablement

## Version 16.10.3 November 15, 2022
Patch release that fixes checking for notification opt-in when disabling the config option requestAuthorizationToUseNotifications.

Expand Down

0 comments on commit f3c3c49

Please sign in to comment.