@capgo/capacitor-twilio-voice 8.0.15 → 8.0.16

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -12,6 +12,17 @@ A Capacitor plugin for integrating Twilio Voice calling functionality into iOS a
12
12
 
13
13
  The most complete doc is available here: https://capgo.app/docs/plugins/twilio-voice/
14
14
 
15
+ ## Compatibility
16
+
17
+ | Plugin version | Capacitor compatibility | Maintained |
18
+ | -------------- | ----------------------- | ---------- |
19
+ | v8.\*.\* | v8.\*.\* | ✅ |
20
+ | v7.\*.\* | v7.\*.\* | On demand |
21
+ | v6.\*.\* | v6.\*.\* | ❌ |
22
+ | v5.\*.\* | v5.\*.\* | ❌ |
23
+
24
+ > **Note:** The major version of this plugin follows the major version of Capacitor. Use the version that matches your Capacitor installation (e.g., plugin v8 for Capacitor 8). Only the latest major version is actively maintained.
25
+
15
26
  ## Installation
16
27
 
17
28
  ```bash
@@ -75,7 +75,7 @@ import org.json.JSONObject;
75
75
  )
76
76
  public class CapacitorTwilioVoicePlugin extends Plugin {
77
77
 
78
- private final String pluginVersion = "8.0.15";
78
+ private final String pluginVersion = "8.0.16";
79
79
 
80
80
  private static final String TAG = "CapacitorTwilioVoice";
81
81
  private static final String PREF_ACCESS_TOKEN = "twilio_access_token";
@@ -27,7 +27,7 @@ public protocol PushKitEventDelegate: AnyObject {
27
27
  */
28
28
  @objc(CapacitorTwilioVoicePlugin)
29
29
  public class CapacitorTwilioVoicePlugin: CAPPlugin, CAPBridgedPlugin, PushKitEventDelegate {
30
- private let pluginVersion: String = "8.0.15"
30
+ private let pluginVersion: String = "8.0.16"
31
31
 
32
32
  public let identifier = "CapacitorTwilioVoicePlugin"
33
33
  public let jsName = "CapacitorTwilioVoice"
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@capgo/capacitor-twilio-voice",
3
- "version": "8.0.15",
3
+ "version": "8.0.16",
4
4
  "description": "Integrates the Twilio Voice SDK into Capacitor",
5
5
  "main": "dist/plugin.cjs.js",
6
6
  "module": "dist/esm/index.js",