expo-gl 12.3.0 → 12.3.1

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,10 @@
10
10
 
11
11
  ### 💡 Others
12
12
 
13
+ ## 12.3.1 — 2023-02-09
14
+
15
+ _This version does not introduce any user-facing changes._
16
+
13
17
  ## 12.3.0 — 2023-02-03
14
18
 
15
19
  ### 🎉 New features
package/README.md CHANGED
@@ -1,4 +1,11 @@
1
- # expo-gl
1
+ <p>
2
+ <a href="https://docs.expo.dev/versions/latest/sdk/gl-view/">
3
+ <img
4
+ src="../../.github/resources/expo-gl.svg"
5
+ alt="expo-gl"
6
+ height="64" />
7
+ </a>
8
+ </p>
2
9
 
3
10
  Provides GLView that acts as OpenGL ES render target and gives GL context object implementing WebGL 2.0 specification.
4
11
 
@@ -6,7 +6,7 @@ apply plugin: 'maven-publish'
6
6
  apply plugin: "de.undercouch.download"
7
7
 
8
8
  group = 'host.exp.exponent'
9
- version = '12.3.0'
9
+ version = '12.3.1'
10
10
 
11
11
  def REACT_NATIVE_BUILD_FROM_SOURCE = findProject(":ReactAndroid") != null
12
12
  def REACT_NATIVE_DIR = REACT_NATIVE_BUILD_FROM_SOURCE
@@ -43,7 +43,7 @@ buildscript {
43
43
  if (ext.has("kotlinVersion")) {
44
44
  ext.kotlinVersion()
45
45
  } else {
46
- ext.safeExtGet("kotlinVersion", "1.6.10")
46
+ ext.safeExtGet("kotlinVersion", "1.8.10")
47
47
  }
48
48
  }
49
49
 
@@ -103,7 +103,7 @@ android {
103
103
  minSdkVersion safeExtGet("minSdkVersion", 21)
104
104
  targetSdkVersion safeExtGet("targetSdkVersion", 33)
105
105
  versionCode 31
106
- versionName "12.3.0"
106
+ versionName "12.3.1"
107
107
 
108
108
  externalNativeBuild {
109
109
  cmake {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "expo-gl",
3
- "version": "12.3.0",
3
+ "version": "12.3.1",
4
4
  "description": "Provides GLView that acts as OpenGL ES render target and gives GL context object implementing WebGL 2.0 specification.",
5
5
  "main": "build/index.js",
6
6
  "types": "build/index.d.ts",
@@ -49,5 +49,5 @@
49
49
  "peerDependencies": {
50
50
  "expo": "*"
51
51
  },
52
- "gitHead": "1815e2eaad8c753588c7b1eb74420174a28e01f4"
52
+ "gitHead": "1f8a6a09570fd451378565ca34933018ce48454e"
53
53
  }