expo-eas-client 0.2.1 → 0.3.0

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/CHANGELOG.md CHANGED
@@ -10,6 +10,12 @@
10
10
 
11
11
  ### 💡 Others
12
12
 
13
+ ## 0.3.0 — 2022-07-07
14
+
15
+ ### 💡 Others
16
+
17
+ - Migrated Expo modules definitions to the new naming convention. ([#17193](https://github.com/expo/expo/pull/17193) by [@tsapeta](https://github.com/tsapeta))
18
+
13
19
  ## 0.2.1 — 2022-04-20
14
20
 
15
21
  _This version does not introduce any user-facing changes._
@@ -4,7 +4,7 @@ apply plugin: 'kotlin-android-extensions'
4
4
  apply plugin: 'maven-publish'
5
5
 
6
6
  group = 'host.exp.exponent'
7
- version = '0.2.1'
7
+ version = '0.3.0'
8
8
 
9
9
  buildscript {
10
10
  def expoModulesCorePlugin = new File(project(":expo-modules-core").projectDir.absolutePath, "ExpoModulesCorePlugin.gradle")
@@ -75,7 +75,7 @@ android {
75
75
  minSdkVersion safeExtGet("minSdkVersion", 21)
76
76
  targetSdkVersion safeExtGet("targetSdkVersion", 31)
77
77
  versionCode 1
78
- versionName "0.2.1"
78
+ versionName "0.3.0"
79
79
  testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
80
80
  }
81
81
  testOptions {
@@ -10,9 +10,9 @@ class EASClientModule : Module() {
10
10
  }
11
11
 
12
12
  override fun definition() = ModuleDefinition {
13
- name("EASClient")
13
+ Name("EASClient")
14
14
 
15
- constants {
15
+ Constants {
16
16
  mapOf("clientID" to EASClientID(context).uuid.toString())
17
17
  }
18
18
  }
@@ -4,9 +4,9 @@ import ExpoModulesCore
4
4
 
5
5
  public class EASClientModule: Module {
6
6
  public func definition() -> ModuleDefinition {
7
- name("EASClient")
7
+ Name("EASClient")
8
8
 
9
- constants([
9
+ Constants([
10
10
  "clientID": EASClientID.uuid().uuidString
11
11
  ])
12
12
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "expo-eas-client",
3
- "version": "0.2.1",
3
+ "version": "0.3.0",
4
4
  "description": "Stable client identifier for EAS services",
5
5
  "main": "build/index.js",
6
6
  "types": "build/index.d.ts",
@@ -37,5 +37,5 @@
37
37
  "devDependencies": {
38
38
  "expo-module-scripts": "^2.0.0"
39
39
  },
40
- "gitHead": "2b35d9008fef42cb53473331c37693ca12e9bf12"
40
+ "gitHead": "e893ff2b01e108cf246cec02318c0df9d6bc603c"
41
41
  }
package/tsconfig.json CHANGED
@@ -5,5 +5,5 @@
5
5
  "outDir": "./build"
6
6
  },
7
7
  "include": ["./src"],
8
- "exclude": ["**/__mocks__/*", "**/__tests__/*"]
8
+ "exclude": ["**/__mocks__/*", "**/__tests__/*", "**/__stories__/*"]
9
9
  }