Skip to content

Commit 05d52ff

Browse files
authored
Merge branch 'master' into embedded-no-diff-merge
2 parents 040f525 + 390892d commit 05d52ff

16 files changed

+520
-17
lines changed

.github/workflows/ios-sdk-release.yml

Lines changed: 63 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,63 @@
1+
name: iOS SDK Release
2+
run-name: ${{ github.actor }} is starting iOS SDK release
3+
4+
on:
5+
workflow_dispatch:
6+
inputs:
7+
version_number:
8+
description: "iOS SDK version"
9+
required: true
10+
branch:
11+
description: "Branch to release (defaults to master)"
12+
required: true
13+
default: "master"
14+
changelog_section:
15+
description: "Changelog version header (e.g. 6.4.17, 6.5.0-beta)"
16+
required: true
17+
set_prerelease:
18+
type: boolean
19+
description: "Is this a prerelease?"
20+
default: false
21+
env:
22+
VERSION: ${{ github.event.inputs.version_number }}
23+
BRANCH: ${{ github.event.inputs.branch }}
24+
CHANGELOG_SECTION: ${{ github.event.inputs.changelog_section }}
25+
OUTPUT_DIR: ./output_dir
26+
GITHUB_TOKEN: ${{ secrets.SDK_RELEASE_TOKEN }}
27+
RELEASE_BRANCH:
28+
SET_PRERELEASE: ${{ github.event.inputs.set_prerelease }}
29+
SLACK_WEBHOOK: ${{ secrets.SLACK_WEBHOOK }}
30+
COCOAPODS_TRUNK_TOKEN: ${{ secrets.COCOAPODS_TRUNK_TOKEN }}
31+
32+
jobs:
33+
ios-sdk-release:
34+
runs-on: macos-latest
35+
36+
steps:
37+
- uses: actions/checkout@v4
38+
- uses: ruby/setup-ruby@v1
39+
with:
40+
ruby-version: "3.2"
41+
bundler-cache: true
42+
- name: Install Cocoapods
43+
run: gem install cocoapods
44+
45+
- name: set version number and push podspecs to git
46+
run: bundle exec fastlane ios bump_release_version version:$VERSION
47+
48+
- name: clean cocaopods cache and lint
49+
run: bundle exec fastlane ios clean_and_lint
50+
51+
- name: create xcframeworks and zip
52+
run: bundle exec fastlane ios build_xcframework output_dir:./output_dir
53+
54+
- name: create github release and upload assets
55+
56+
run: |
57+
bundle exec fastlane ios create_release version:$VERSION branch:$BRANCH changelog_section:$CHANGELOG_SECTION output_dir:$OUTPUT_DIR github_token:$GITHUB_TOKEN set_prerelease:$SET_PRERELEASE
58+
59+
- name: push pods to trunk
60+
run: bundle exec fastlane ios pod_trunk_push
61+
62+
- name: slack notification
63+
run: bundle exec fastlane ios slack_message version:$VERSION changelog_section:$CHANGELOG_SECTION slack_webhook:$SLACK_WEBHOOK

CHANGELOG.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,11 @@
33
All notable changes to this project will be documented in this file.
44
This project adheres to [Semantic Versioning](http://semver.org/).
55

6-
## [6.5.0-beta2]
6+
## [6.5.0]
77

8-
## [6.5.0-beta1]
8+
### Added
9+
10+
- Support for Embedded Messages
911

1012
## [6.4.16]
1113

Gemfile

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
source "https://rubygems.org"
2+
3+
gem "cocoapods"
4+
gem "fastlane"
5+
6+
plugins_path = File.join(File.dirname(__FILE__), 'fastlane', 'Pluginfile')
7+
eval_gemfile(plugins_path) if File.exist?(plugins_path)

Gemfile.lock

Lines changed: 293 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,293 @@
1+
GEM
2+
remote: https://rubygems.org/
3+
specs:
4+
CFPropertyList (3.0.6)
5+
rexml
6+
activesupport (7.1.2)
7+
base64
8+
bigdecimal
9+
concurrent-ruby (~> 1.0, >= 1.0.2)
10+
connection_pool (>= 2.2.5)
11+
drb
12+
i18n (>= 1.6, < 2)
13+
minitest (>= 5.1)
14+
mutex_m
15+
tzinfo (~> 2.0)
16+
addressable (2.8.5)
17+
public_suffix (>= 2.0.2, < 6.0)
18+
algoliasearch (1.27.5)
19+
httpclient (~> 2.8, >= 2.8.3)
20+
json (>= 1.5.1)
21+
artifactory (3.0.15)
22+
atomos (0.1.3)
23+
aws-eventstream (1.3.0)
24+
aws-partitions (1.859.0)
25+
aws-sdk-core (3.188.0)
26+
aws-eventstream (~> 1, >= 1.0.2)
27+
aws-partitions (~> 1, >= 1.651.0)
28+
aws-sigv4 (~> 1.5)
29+
jmespath (~> 1, >= 1.6.1)
30+
aws-sdk-kms (1.73.0)
31+
aws-sdk-core (~> 3, >= 3.188.0)
32+
aws-sigv4 (~> 1.1)
33+
aws-sdk-s3 (1.140.0)
34+
aws-sdk-core (~> 3, >= 3.188.0)
35+
aws-sdk-kms (~> 1)
36+
aws-sigv4 (~> 1.6)
37+
aws-sigv4 (1.7.0)
38+
aws-eventstream (~> 1, >= 1.0.2)
39+
babosa (1.0.4)
40+
base64 (0.2.0)
41+
bigdecimal (3.1.4)
42+
claide (1.1.0)
43+
cocoapods (1.14.2)
44+
addressable (~> 2.8)
45+
claide (>= 1.0.2, < 2.0)
46+
cocoapods-core (= 1.14.2)
47+
cocoapods-deintegrate (>= 1.0.3, < 2.0)
48+
cocoapods-downloader (>= 2.0)
49+
cocoapods-plugins (>= 1.0.0, < 2.0)
50+
cocoapods-search (>= 1.0.0, < 2.0)
51+
cocoapods-trunk (>= 1.6.0, < 2.0)
52+
cocoapods-try (>= 1.1.0, < 2.0)
53+
colored2 (~> 3.1)
54+
escape (~> 0.0.4)
55+
fourflusher (>= 2.3.0, < 3.0)
56+
gh_inspector (~> 1.0)
57+
molinillo (~> 0.8.0)
58+
nap (~> 1.0)
59+
ruby-macho (>= 2.3.0, < 3.0)
60+
xcodeproj (>= 1.23.0, < 2.0)
61+
cocoapods-core (1.14.2)
62+
activesupport (>= 5.0, < 8)
63+
addressable (~> 2.8)
64+
algoliasearch (~> 1.0)
65+
concurrent-ruby (~> 1.1)
66+
fuzzy_match (~> 2.0.4)
67+
nap (~> 1.0)
68+
netrc (~> 0.11)
69+
public_suffix (~> 4.0)
70+
typhoeus (~> 1.0)
71+
cocoapods-deintegrate (1.0.5)
72+
cocoapods-downloader (2.0)
73+
cocoapods-plugins (1.0.0)
74+
nap
75+
cocoapods-search (1.0.1)
76+
cocoapods-trunk (1.6.0)
77+
nap (>= 0.8, < 2.0)
78+
netrc (~> 0.11)
79+
cocoapods-try (1.2.0)
80+
colored (1.2)
81+
colored2 (3.1.2)
82+
commander (4.6.0)
83+
highline (~> 2.0.0)
84+
concurrent-ruby (1.2.2)
85+
connection_pool (2.4.1)
86+
declarative (0.0.20)
87+
digest-crc (0.6.5)
88+
rake (>= 12.0.0, < 14.0.0)
89+
domain_name (0.6.20231109)
90+
dotenv (2.8.1)
91+
drb (2.2.0)
92+
ruby2_keywords
93+
emoji_regex (3.2.3)
94+
escape (0.0.4)
95+
ethon (0.16.0)
96+
ffi (>= 1.15.0)
97+
excon (0.105.0)
98+
faraday (1.10.3)
99+
faraday-em_http (~> 1.0)
100+
faraday-em_synchrony (~> 1.0)
101+
faraday-excon (~> 1.1)
102+
faraday-httpclient (~> 1.0)
103+
faraday-multipart (~> 1.0)
104+
faraday-net_http (~> 1.0)
105+
faraday-net_http_persistent (~> 1.0)
106+
faraday-patron (~> 1.0)
107+
faraday-rack (~> 1.0)
108+
faraday-retry (~> 1.0)
109+
ruby2_keywords (>= 0.0.4)
110+
faraday-cookie_jar (0.0.7)
111+
faraday (>= 0.8.0)
112+
http-cookie (~> 1.0.0)
113+
faraday-em_http (1.0.0)
114+
faraday-em_synchrony (1.0.0)
115+
faraday-excon (1.1.0)
116+
faraday-httpclient (1.0.1)
117+
faraday-multipart (1.0.4)
118+
multipart-post (~> 2)
119+
faraday-net_http (1.0.1)
120+
faraday-net_http_persistent (1.2.0)
121+
faraday-patron (1.0.0)
122+
faraday-rack (1.0.0)
123+
faraday-retry (1.0.3)
124+
faraday_middleware (1.2.0)
125+
faraday (~> 1.0)
126+
fastimage (2.2.7)
127+
fastlane (2.217.0)
128+
CFPropertyList (>= 2.3, < 4.0.0)
129+
addressable (>= 2.8, < 3.0.0)
130+
artifactory (~> 3.0)
131+
aws-sdk-s3 (~> 1.0)
132+
babosa (>= 1.0.3, < 2.0.0)
133+
bundler (>= 1.12.0, < 3.0.0)
134+
colored
135+
commander (~> 4.6)
136+
dotenv (>= 2.1.1, < 3.0.0)
137+
emoji_regex (>= 0.1, < 4.0)
138+
excon (>= 0.71.0, < 1.0.0)
139+
faraday (~> 1.0)
140+
faraday-cookie_jar (~> 0.0.6)
141+
faraday_middleware (~> 1.0)
142+
fastimage (>= 2.1.0, < 3.0.0)
143+
gh_inspector (>= 1.1.2, < 2.0.0)
144+
google-apis-androidpublisher_v3 (~> 0.3)
145+
google-apis-playcustomapp_v1 (~> 0.1)
146+
google-cloud-storage (~> 1.31)
147+
highline (~> 2.0)
148+
http-cookie (~> 1.0.5)
149+
json (< 3.0.0)
150+
jwt (>= 2.1.0, < 3)
151+
mini_magick (>= 4.9.4, < 5.0.0)
152+
multipart-post (>= 2.0.0, < 3.0.0)
153+
naturally (~> 2.2)
154+
optparse (~> 0.1.1)
155+
plist (>= 3.1.0, < 4.0.0)
156+
rubyzip (>= 2.0.0, < 3.0.0)
157+
security (= 0.1.3)
158+
simctl (~> 1.6.3)
159+
terminal-notifier (>= 2.0.0, < 3.0.0)
160+
terminal-table (~> 3)
161+
tty-screen (>= 0.6.3, < 1.0.0)
162+
tty-spinner (>= 0.8.0, < 1.0.0)
163+
word_wrap (~> 1.0.0)
164+
xcodeproj (>= 1.13.0, < 2.0.0)
165+
xcpretty (~> 0.3.0)
166+
xcpretty-travis-formatter (>= 0.0.3)
167+
fastlane-plugin-changelog (0.16.0)
168+
fastlane-plugin-create_xcframework (1.1.2)
169+
ffi (1.16.3)
170+
fourflusher (2.3.1)
171+
fuzzy_match (2.0.4)
172+
gh_inspector (1.1.3)
173+
google-apis-androidpublisher_v3 (0.53.0)
174+
google-apis-core (>= 0.11.0, < 2.a)
175+
google-apis-core (0.11.2)
176+
addressable (~> 2.5, >= 2.5.1)
177+
googleauth (>= 0.16.2, < 2.a)
178+
httpclient (>= 2.8.1, < 3.a)
179+
mini_mime (~> 1.0)
180+
representable (~> 3.0)
181+
retriable (>= 2.0, < 4.a)
182+
rexml
183+
webrick
184+
google-apis-iamcredentials_v1 (0.17.0)
185+
google-apis-core (>= 0.11.0, < 2.a)
186+
google-apis-playcustomapp_v1 (0.13.0)
187+
google-apis-core (>= 0.11.0, < 2.a)
188+
google-apis-storage_v1 (0.29.0)
189+
google-apis-core (>= 0.11.0, < 2.a)
190+
google-cloud-core (1.6.0)
191+
google-cloud-env (~> 1.0)
192+
google-cloud-errors (~> 1.0)
193+
google-cloud-env (1.6.0)
194+
faraday (>= 0.17.3, < 3.0)
195+
google-cloud-errors (1.3.1)
196+
google-cloud-storage (1.45.0)
197+
addressable (~> 2.8)
198+
digest-crc (~> 0.4)
199+
google-apis-iamcredentials_v1 (~> 0.1)
200+
google-apis-storage_v1 (~> 0.29.0)
201+
google-cloud-core (~> 1.6)
202+
googleauth (>= 0.16.2, < 2.a)
203+
mini_mime (~> 1.0)
204+
googleauth (1.8.1)
205+
faraday (>= 0.17.3, < 3.a)
206+
jwt (>= 1.4, < 3.0)
207+
multi_json (~> 1.11)
208+
os (>= 0.9, < 2.0)
209+
signet (>= 0.16, < 2.a)
210+
highline (2.0.3)
211+
http-cookie (1.0.5)
212+
domain_name (~> 0.5)
213+
httpclient (2.8.3)
214+
i18n (1.14.1)
215+
concurrent-ruby (~> 1.0)
216+
jmespath (1.6.2)
217+
json (2.6.3)
218+
jwt (2.7.1)
219+
mini_magick (4.12.0)
220+
mini_mime (1.1.5)
221+
minitest (5.20.0)
222+
molinillo (0.8.0)
223+
multi_json (1.15.0)
224+
multipart-post (2.3.0)
225+
mutex_m (0.2.0)
226+
nanaimo (0.3.0)
227+
nap (1.1.0)
228+
naturally (2.2.1)
229+
netrc (0.11.0)
230+
optparse (0.1.1)
231+
os (1.1.4)
232+
plist (3.7.0)
233+
public_suffix (4.0.7)
234+
rake (13.1.0)
235+
representable (3.2.0)
236+
declarative (< 0.1.0)
237+
trailblazer-option (>= 0.1.1, < 0.2.0)
238+
uber (< 0.2.0)
239+
retriable (3.1.2)
240+
rexml (3.2.6)
241+
rouge (2.0.7)
242+
ruby-macho (2.5.1)
243+
ruby2_keywords (0.0.5)
244+
rubyzip (2.3.2)
245+
security (0.1.3)
246+
signet (0.18.0)
247+
addressable (~> 2.8)
248+
faraday (>= 0.17.5, < 3.a)
249+
jwt (>= 1.5, < 3.0)
250+
multi_json (~> 1.10)
251+
simctl (1.6.10)
252+
CFPropertyList
253+
naturally
254+
terminal-notifier (2.0.0)
255+
terminal-table (3.0.2)
256+
unicode-display_width (>= 1.1.1, < 3)
257+
trailblazer-option (0.1.2)
258+
tty-cursor (0.7.1)
259+
tty-screen (0.8.1)
260+
tty-spinner (0.9.3)
261+
tty-cursor (~> 0.7)
262+
typhoeus (1.4.0)
263+
ethon (>= 0.9.0)
264+
tzinfo (2.0.6)
265+
concurrent-ruby (~> 1.0)
266+
uber (0.1.0)
267+
unicode-display_width (2.5.0)
268+
webrick (1.8.1)
269+
word_wrap (1.0.0)
270+
xcodeproj (1.23.0)
271+
CFPropertyList (>= 2.3.3, < 4.0)
272+
atomos (~> 0.1.3)
273+
claide (>= 1.0.2, < 2.0)
274+
colored2 (~> 3.1)
275+
nanaimo (~> 0.3.0)
276+
rexml (~> 3.2.4)
277+
xcpretty (0.3.0)
278+
rouge (~> 2.0.7)
279+
xcpretty-travis-formatter (1.0.1)
280+
xcpretty (~> 0.2, >= 0.0.7)
281+
282+
PLATFORMS
283+
arm64-darwin-21
284+
x86_64-darwin-20
285+
286+
DEPENDENCIES
287+
cocoapods
288+
fastlane
289+
fastlane-plugin-changelog
290+
fastlane-plugin-create_xcframework
291+
292+
BUNDLED WITH
293+
2.4.22

Iterable-iOS-AppExtensions.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Pod::Spec.new do |s|
22
s.name = "Iterable-iOS-AppExtensions"
33
s.module_name = "IterableAppExtensions"
4-
s.version = "6.5.0-beta1"
4+
s.version = "6.5.0"
55
s.summary = "App Extensions for Iterable SDK"
66

77
s.description = <<-DESC

Iterable-iOS-SDK.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Pod::Spec.new do |s|
22
s.name = "Iterable-iOS-SDK"
33
s.module_name = "IterableSDK"
4-
s.version = "6.5.0-beta1"
4+
s.version = "6.5.0"
55
s.summary = "Iterable's official SDK for iOS"
66

77
s.description = <<-DESC

0 commit comments

Comments
 (0)