expo-eas-client 1.0.8-canary-20251015-a6a1272 → 1.0.8-canary-20251031-b135dff

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.
@@ -4,7 +4,7 @@ plugins {
4
4
  }
5
5
 
6
6
  group = 'host.exp.exponent'
7
- version = '1.0.8-canary-20251015-a6a1272'
7
+ version = '1.0.8-canary-20251031-b135dff'
8
8
 
9
9
  expoModule {
10
10
  canBePublished false
@@ -14,7 +14,7 @@ android {
14
14
  namespace "expo.modules.easclient"
15
15
  defaultConfig {
16
16
  versionCode 1
17
- versionName "1.0.8-canary-20251015-a6a1272"
17
+ versionName "1.0.8-canary-20251031-b135dff"
18
18
  testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
19
19
  }
20
20
  testOptions {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "expo-eas-client",
3
- "version": "1.0.8-canary-20251015-a6a1272",
3
+ "version": "1.0.8-canary-20251031-b135dff",
4
4
  "description": "Stable client identifier for EAS services",
5
5
  "main": "build/index.js",
6
6
  "types": "build/index.d.ts",
@@ -35,6 +35,6 @@
35
35
  "preset": "expo-module-scripts"
36
36
  },
37
37
  "devDependencies": {
38
- "expo-module-scripts": "5.0.8-canary-20251015-a6a1272"
38
+ "expo-module-scripts": "5.0.8-canary-20251031-b135dff"
39
39
  }
40
40
  }
@@ -1,15 +0,0 @@
1
- // Copyright (c) 2020 650 Industries, Inc. All rights reserved.
2
-
3
- import XCTest
4
-
5
- @testable import EASClient
6
-
7
- class EASClientIdTests : XCTestCase {
8
- func testCreatesStableUUID() throws {
9
- let easClientId = EASClientID.uuid().uuidString
10
- XCTAssertNotNil(easClientId)
11
-
12
- let easClientId2 = EASClientID.uuid().uuidString
13
- XCTAssertEqual(easClientId, easClientId2)
14
- }
15
- }