Skip to content

Commit

Permalink
🚀 5.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
mikemilla committed Oct 4, 2024
1 parent 4a3583e commit 294d78a
Show file tree
Hide file tree
Showing 5 changed files with 24 additions and 7 deletions.
2 changes: 1 addition & 1 deletion Courier_iOS.podspec
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Pod::Spec.new do |s|

s.name = 'Courier_iOS'
s.version = '4.5.4'
s.version = '5.0.0'
s.summary = 'Courier makes it easy to add notifications to your app'

s.homepage = 'https://github.com/trycourier/courier-ios'
Expand Down
8 changes: 4 additions & 4 deletions Example/Example.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -508,7 +508,7 @@
ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor;
CODE_SIGN_ENTITLEMENTS = Example/Example.entitlements;
CODE_SIGN_STYLE = Automatic;
CURRENT_PROJECT_VERSION = 51;
CURRENT_PROJECT_VERSION = 52;
DEVELOPMENT_TEAM = 83BJVWGX4Q;
GENERATE_INFOPLIST_FILE = YES;
INFOPLIST_FILE = Example/Info.plist;
Expand Down Expand Up @@ -539,7 +539,7 @@
ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor;
CODE_SIGN_ENTITLEMENTS = Example/Example.entitlements;
CODE_SIGN_STYLE = Automatic;
CURRENT_PROJECT_VERSION = 51;
CURRENT_PROJECT_VERSION = 52;
DEVELOPMENT_TEAM = 83BJVWGX4Q;
GENERATE_INFOPLIST_FILE = YES;
INFOPLIST_FILE = Example/Info.plist;
Expand All @@ -566,7 +566,7 @@
isa = XCBuildConfiguration;
buildSettings = {
CODE_SIGN_STYLE = Automatic;
CURRENT_PROJECT_VERSION = 51;
CURRENT_PROJECT_VERSION = 52;
DEVELOPMENT_TEAM = 83BJVWGX4Q;
GENERATE_INFOPLIST_FILE = YES;
INFOPLIST_FILE = CourierService/Info.plist;
Expand All @@ -592,7 +592,7 @@
isa = XCBuildConfiguration;
buildSettings = {
CODE_SIGN_STYLE = Automatic;
CURRENT_PROJECT_VERSION = 51;
CURRENT_PROJECT_VERSION = 52;
DEVELOPMENT_TEAM = 83BJVWGX4Q;
GENERATE_INFOPLIST_FILE = YES;
INFOPLIST_FILE = CourierService/Info.plist;
Expand Down
2 changes: 1 addition & 1 deletion Scripts/run_tests.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
cd "$(dirname "$0")/.."

# Default simulator
DEFAULT_SIMULATOR="iPhone 15 Pro,OS=17.4"
DEFAULT_SIMULATOR="iPhone 16 Pro,OS=18.0"

# Prompt the user for the simulator, with a default value
read -p "Which simulator should start? (press Enter for default: '$DEFAULT_SIMULATOR'): " user_simulator
Expand Down
2 changes: 1 addition & 1 deletion Sources/Courier_iOS/Courier_iOS.swift
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ import UIKit
/**
* Versioning
*/
internal static let version = "4.5.4"
internal static let version = "5.0.0"
@objc public static var agent = CourierAgent.nativeIOS(version)

/**
Expand Down
17 changes: 17 additions & 0 deletions Tests/CourierTests/Env.swift
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
//
// Env.swift
//
// Created by https://github.com/mikemilla on 9/11/22.
//

import Foundation

class Env {

static let COURIER_USER_ID = UUID().uuidString
static let COURIER_AUTH_KEY = "pk_prod_V1TMCW4FEG4PZNM52P4EM55D1SF2"
static let COURIER_CLIENT_KEY = "NmE1MWJmOGMtYWQyZS00MmJmLWJlNmEtODM4NWI1ZDRhMGY1"
static let COURIER_BRAND_ID = "7S9RBWHHS9MBYRPSRYAFYF9K3Q1M"
static let COURIER_PREFERENCE_TOPIC_ID = "0ZR4JTDHZ0MHVSMSM3MW0YX62X6N"

}

0 comments on commit 294d78a

Please sign in to comment.