Skip to content

Commit

Permalink
Merge pull request #30 from Notificare/release/3.4.0-beta.1
Browse files Browse the repository at this point in the history
3.4.0-beta.1
  • Loading branch information
hpinhal authored Sep 1, 2022
2 parents b251247 + 98ba487 commit 2445f2a
Show file tree
Hide file tree
Showing 49 changed files with 2,487 additions and 81 deletions.
4 changes: 4 additions & 0 deletions .github/templates/Notificare.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,10 @@ For support please use: http://support.notifica.re
subspec.vendored_frameworks = "Notificare/NotificareGeoKit.xcframework"
end

spec.subspec 'NotificareInAppMessagingKit' do |subspec|
subspec.vendored_frameworks = "Notificare/NotificareInAppMessagingKit.xcframework"
end

spec.subspec 'NotificareInboxKit' do |subspec|
subspec.vendored_frameworks = "Notificare/NotificareInboxKit.xcframework"
end
Expand Down
9 changes: 9 additions & 0 deletions .github/templates/Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,10 @@ let package = Package(
name: "NotificareGeoKit",
targets: ["NotificareGeoKit"]
),
.library(
name: "NotificareInAppMessagingKit",
targets: ["NotificareInAppMessagingKit"]
),
.library(
name: "NotificareInboxKit",
targets: ["NotificareInboxKit"]
Expand Down Expand Up @@ -74,6 +78,11 @@ let package = Package(
url: "https://github.com/notificare/notificare-sdk-ios/releases/download/{{VERSION}}/spm-notificare-geo.zip",
checksum: "{{NOTIFICARE_GEO_CHECKSUM}}"
),
.binaryTarget(
name: "NotificareInAppMessagingKit",
url: "https://github.com/notificare/notificare-sdk-ios/releases/download/{{VERSION}}/spm-notificare-in-app-messaging.zip",
checksum: "{{NOTIFICARE_IN_APP_MESSAGING_CHECKSUM}}"
),
.binaryTarget(
name: "NotificareInboxKit",
url: "https://github.com/notificare/notificare-sdk-ios/releases/download/{{VERSION}}/spm-notificare-inbox.zip",
Expand Down
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# CHANGELOG

## 3.4.0-beta.1

- In-app messaging

## 3.3.0

- Monetise module
Expand Down
6 changes: 5 additions & 1 deletion Notificare.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |spec|
spec.name = "Notificare"
spec.version = "3.3.0"
spec.version = "3.4.0-beta.1"
spec.summary = "Notificare Library for iOS apps"
spec.description = <<-DESC
The Notificare iOS Library implements the power of smart notifications, location services, contextual marketing and powerful loyalty solutions provided by the Notificare platform in iOS applications.
Expand Down Expand Up @@ -36,6 +36,10 @@ For support please use: http://support.notifica.re
subspec.vendored_frameworks = "Notificare/NotificareGeoKit.xcframework"
end

spec.subspec 'NotificareInAppMessagingKit' do |subspec|
subspec.vendored_frameworks = "Notificare/NotificareInAppMessagingKit.xcframework"
end

spec.subspec 'NotificareInboxKit' do |subspec|
subspec.vendored_frameworks = "Notificare/NotificareInboxKit.xcframework"
end
Expand Down
3 changes: 3 additions & 0 deletions Notificare.xcworkspace/contents.xcworkspacedata

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
Expand Up @@ -453,7 +453,7 @@
"@executable_path/Frameworks",
"@loader_path/Frameworks",
);
MARKETING_VERSION = 3.3.0;
MARKETING_VERSION = 3.4.0;
PRODUCT_BUNDLE_IDENTIFIER = re.notifica.assets;
PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)";
SKIP_INSTALL = YES;
Expand Down Expand Up @@ -481,7 +481,7 @@
"@executable_path/Frameworks",
"@loader_path/Frameworks",
);
MARKETING_VERSION = 3.3.0;
MARKETING_VERSION = 3.4.0;
PRODUCT_BUNDLE_IDENTIFIER = re.notifica.assets;
PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)";
SKIP_INSTALL = YES;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -530,7 +530,7 @@
"@executable_path/Frameworks",
"@loader_path/Frameworks",
);
MARKETING_VERSION = 3.3.0;
MARKETING_VERSION = 3.4.0;
PRODUCT_BUNDLE_IDENTIFIER = re.notifica.authentication;
PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)";
SKIP_INSTALL = YES;
Expand Down Expand Up @@ -565,7 +565,7 @@
"@executable_path/Frameworks",
"@loader_path/Frameworks",
);
MARKETING_VERSION = 3.3.0;
MARKETING_VERSION = 3.4.0;
PRODUCT_BUNDLE_IDENTIFIER = re.notifica.authentication;
PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)";
SKIP_INSTALL = YES;
Expand Down
4 changes: 2 additions & 2 deletions NotificareGeoKit/NotificareGeoKit.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -523,7 +523,7 @@
"@executable_path/Frameworks",
"@loader_path/Frameworks",
);
MARKETING_VERSION = 3.3.0;
MARKETING_VERSION = 3.4.0;
PRODUCT_BUNDLE_IDENTIFIER = re.notifica.geo;
PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)";
SKIP_INSTALL = YES;
Expand Down Expand Up @@ -551,7 +551,7 @@
"@executable_path/Frameworks",
"@loader_path/Frameworks",
);
MARKETING_VERSION = 3.3.0;
MARKETING_VERSION = 3.4.0;
PRODUCT_BUNDLE_IDENTIFIER = re.notifica.geo;
PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)";
SKIP_INSTALL = YES;
Expand Down
Loading

0 comments on commit 2445f2a

Please sign in to comment.