Skip to content
This repository has been archived by the owner on May 6, 2022. It is now read-only.

Commit

Permalink
release 11.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
noelweichbrodt committed Aug 13, 2020
1 parent 541972e commit 4760a12
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 7 deletions.
13 changes: 7 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ Activity Detection (VAD), wakeword activation, and Automatic Speech Recognition
* [Installation](#installation)
* [Usage](#usage)
* [Documentation](#Documentation)
* [Reference](#Reference)
* [Deployment](#Deployment)
* [License](#license)
<!--te-->
Expand Down Expand Up @@ -65,13 +66,13 @@ let nlu = try! NLUTensorflow(self, configuration: configuration)
nlu.classify(utterance: "I can't turn that light in the room on for you, Dave", context: [:])
```

### Reference implementation
### Reference

The `SpokestackFrameworkExample` project contains reference implementations for how to use the Spokestack library, along with runnable examples of the wakeword and ASR components. Each component has a corresponding screen from the main screen, and can be started, stopped, or synthesized, as appropriate. The component screens have full debug tracing enabled, so the system control logic and debug events will appear in the XCode Console.
The `SpokestackFrameworkExample` project is a reference implementations for how to use the Spokestack library, along with runnable examples of the VAD, wakeword, ASR, NLU, and TTS components. Each component has a button on the main screen, and can be started, stopped, predicted, or synthesized as appropriate. The component screens have full debug tracing enabled, so the system control logic and debug events will appear in the XCode console.

#### Troubleshooting

A build error similar to `Code Sign error: No unexpired provisioning profiles found that contain any of the keychain's signing certificates` will occur if the bundle identifier is not changed from `io.Spokestack.SpokestackFrameworkExample`, which is tied to the Spokestack organization.
A build error similar to `Code Sign error: No unexpired provisioning profiles found that contain any of the keychain's signing certificates` will occur if the bundle identifier is not changed from `io.Spokestack.SpokestackFrameworkExample`, which is tied to the Spokestack organization.

## Documentation

Expand All @@ -93,9 +94,9 @@ API reference is [available on Github](https://spokestack.github.io/spokestack-i

### Process
1. Increment the `podspec` version in `Spokestack-iOS.podspec`
2. `git commit -a -m 'YOUR_COMMIT_MESSAGE' && git tag YOUR_PODSPEC_VERSION && git push --origin`
3. `pod spec lint --use-libraries --allow-warnings --use-modular-headers`, which should pass all checks
4. `pod trunk push --use-libraries --allow-warnings --use-modular-headers`
2. `pod lib lint --use-libraries --allow-warnings`, which should pass all checks
3. `git commit -a -m 'YOUR_COMMIT_MESSAGE' && git tag YOUR_PODSPEC_VERSION && git push --origin`
4. `pod trunk push --use-libraries --allow-warnings`

## License
[![License](https://img.shields.io/badge/License-Apache%202.0-green.svg)](https://opensource.org/licenses/Apache-2.0)
Expand Down
2 changes: 1 addition & 1 deletion Spokestack-iOS.podspec
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Pod::Spec.new do |s|
s.name = 'Spokestack-iOS'
s.module_name = 'Spokestack'
s.version = '10.1.1'
s.version = '11.0.0'
s.license = 'Apache'
s.summary = 'Spokestack provides an extensible speech interface for the iOS platform.'
s.homepage = 'https://www.spokestack.io'
Expand Down

0 comments on commit 4760a12

Please sign in to comment.