Skip to content

Commit a2a2e33

Browse files
authored
V0.2.1 ios (#28)
* update version * pv_set_sdk * tests & demo * minor * use tag * post release * workflows
1 parent 23b2c57 commit a2a2e33

File tree

13 files changed

+92
-85
lines changed

13 files changed

+92
-85
lines changed

.github/workflows/python.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ on:
1414
- 'lib/mac/**'
1515
- 'lib/raspberry-pi/**'
1616
- 'lib/windows/**'
17+
- 'resources/.test/**'
1718
pull_request:
1819
branches: [ main, 'v[0-9]+.[0-9]+' ]
1920
paths:
@@ -26,6 +27,7 @@ on:
2627
- 'lib/mac/**'
2728
- 'lib/raspberry-pi/**'
2829
- 'lib/windows/**'
30+
- 'resources/.test/**'
2931

3032
defaults:
3133
run:

.github/workflows/web.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,13 +9,15 @@ on:
99
- '!binding/web/README.md'
1010
- 'lib/wasm/**'
1111
- '.github/workflows/web.yml'
12+
- 'resources/.test/**'
1213
pull_request:
1314
branches: [ main, 'v[0-9]+.[0-9]+' ]
1415
paths:
1516
- 'binding/web/**'
1617
- '!binding/web/README.md'
1718
- 'lib/wasm/**'
1819
- '.github/workflows/web.yml'
20+
- 'resources/.test/**'
1921

2022
defaults:
2123
run:

binding/ios/Orca-iOS.podspec

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Pod::Spec.new do |s|
22
s.name = 'Orca-iOS'
33
s.module_name = 'Orca'
4-
s.version = '0.2.0'
4+
s.version = '0.2.1'
55
s.license = {:type => 'Apache 2.0'}
66
s.summary = 'iOS binding for Picovoice\'s Orca Text-to-Speech Engine.'
77
s.description =
@@ -18,7 +18,7 @@ Pod::Spec.new do |s|
1818
DESC
1919
s.homepage = 'https://github.com/Picovoice/orca/tree/main/binding/ios'
2020
s.author = { 'Picovoice' => 'hello@picovoice.ai' }
21-
s.source = { :git => "https://github.com/Picovoice/orca.git", :tag => "Orca-iOS-v0.2.0" }
21+
s.source = { :git => "https://github.com/Picovoice/orca.git", :tag => "Orca-iOS-v0.2.1" }
2222
s.ios.deployment_target = '13.0'
2323
s.swift_version = '5.0'
2424
s.vendored_frameworks = 'lib/ios/PvOrca.xcframework'

binding/ios/OrcaAppTest/OrcaAppTest.xcodeproj/project.pbxproj

Lines changed: 65 additions & 65 deletions
Large diffs are not rendered by default.

binding/ios/OrcaAppTest/OrcaAppTestUITests/OrcaAppTestUITests.swift

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,6 @@ class OrcaAppTestUITests: BaseTest {
7070

7171
let groundTruth = try self.getPcm(
7272
fileUrl: index == 0 ? self.testAudioMaleStream : self.testAudioFemaleStream)
73-
7473
XCTAssertEqual(fullPcm.count, groundTruth.count)
7574
XCTAssertTrue(compareArrays(arr1: fullPcm, arr2: groundTruth, step: 1))
7675
}

binding/ios/OrcaAppTest/Podfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,13 @@ source 'https://cdn.cocoapods.org/'
22
platform :ios, '13.0'
33

44
target 'OrcaAppTest' do
5-
pod 'Orca-iOS', '~> 0.2.0'
5+
pod 'Orca-iOS', '~> 0.2.1'
66
end
77

88
target 'OrcaAppTestUITests' do
9-
pod 'Orca-iOS', '~> 0.2.0'
9+
pod 'Orca-iOS', '~> 0.2.1'
1010
end
1111

1212
target 'PerformanceTest' do
13-
pod 'Orca-iOS', '~> 0.2.0'
13+
pod 'Orca-iOS', '~> 0.2.1'
1414
end
Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
11
PODS:
2-
- Orca-iOS (0.2.0)
2+
- Orca-iOS (0.2.1)
33

44
DEPENDENCIES:
5-
- Orca-iOS (~> 0.2.0)
5+
- Orca-iOS (~> 0.2.1)
66

77
SPEC REPOS:
88
trunk:
99
- Orca-iOS
1010

1111
SPEC CHECKSUMS:
12-
Orca-iOS: 01bbf44ba52a102104fc09aded6bfda7beb4865e
12+
Orca-iOS: f6b6124d78189e26c8c0457022a5948217ebe2d3
1313

14-
PODFILE CHECKSUM: 01d0a4d9f05893e5371be0f1775f4f59ed59da27
14+
PODFILE CHECKSUM: c74fc8347aa5171d01ba9ce86c96a401037847d4
1515

1616
COCOAPODS: 1.15.2

demo/ios/OrcaDemo/OrcaDemo.xcodeproj/project.pbxproj

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -346,15 +346,15 @@
346346
ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor;
347347
CODE_SIGN_STYLE = Automatic;
348348
DEVELOPMENT_ASSET_PATHS = "";
349-
DEVELOPMENT_TEAM = Y6S42VUYBV;
349+
DEVELOPMENT_TEAM = 65723695GD;
350350
ENABLE_PREVIEWS = YES;
351351
INFOPLIST_FILE = OrcaDemo/Info.plist;
352352
IPHONEOS_DEPLOYMENT_TARGET = 14.0;
353353
LD_RUNPATH_SEARCH_PATHS = (
354354
"$(inherited)",
355355
"@executable_path/Frameworks",
356356
);
357-
PRODUCT_BUNDLE_IDENTIFIER = ai.picovoice.OrcaDemo.albert;
357+
PRODUCT_BUNDLE_IDENTIFIER = ai.picovoice.OrcaDemo;
358358
PRODUCT_NAME = "$(TARGET_NAME)";
359359
SWIFT_VERSION = 5.0;
360360
TARGETED_DEVICE_FAMILY = "1,2";
@@ -369,15 +369,15 @@
369369
ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor;
370370
CODE_SIGN_STYLE = Automatic;
371371
DEVELOPMENT_ASSET_PATHS = "";
372-
DEVELOPMENT_TEAM = Y6S42VUYBV;
372+
DEVELOPMENT_TEAM = 65723695GD;
373373
ENABLE_PREVIEWS = YES;
374374
INFOPLIST_FILE = OrcaDemo/Info.plist;
375375
IPHONEOS_DEPLOYMENT_TARGET = 14.0;
376376
LD_RUNPATH_SEARCH_PATHS = (
377377
"$(inherited)",
378378
"@executable_path/Frameworks",
379379
);
380-
PRODUCT_BUNDLE_IDENTIFIER = ai.picovoice.OrcaDemo.albert;
380+
PRODUCT_BUNDLE_IDENTIFIER = ai.picovoice.OrcaDemo;
381381
PRODUCT_NAME = "$(TARGET_NAME)";
382382
SWIFT_VERSION = 5.0;
383383
TARGETED_DEVICE_FAMILY = "1,2";

demo/ios/OrcaDemo/Podfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,5 @@ source 'https://cdn.cocoapods.org/'
22
platform :ios, '13.0'
33

44
target 'OrcaDemo' do
5-
pod 'Orca-iOS', '~> 0.2.0'
5+
pod 'Orca-iOS', '~> 0.2.1'
66
end

demo/ios/OrcaDemo/Podfile.lock

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
11
PODS:
2-
- Orca-iOS (0.2.0)
2+
- Orca-iOS (0.2.1)
33

44
DEPENDENCIES:
5-
- Orca-iOS (~> 0.2.0)
5+
- Orca-iOS (~> 0.2.1)
66

77
SPEC REPOS:
88
trunk:
99
- Orca-iOS
1010

1111
SPEC CHECKSUMS:
12-
Orca-iOS: 01bbf44ba52a102104fc09aded6bfda7beb4865e
12+
Orca-iOS: f6b6124d78189e26c8c0457022a5948217ebe2d3
1313

14-
PODFILE CHECKSUM: 7655658323a426ab9a7ed6f7546e15081a877170
14+
PODFILE CHECKSUM: 652a0a00a9d97df5db1dd9d329fcda8f33faf935
1515

1616
COCOAPODS: 1.15.2

0 commit comments

Comments
 (0)