expo-gl 13.5.0 → 13.6.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
+ ## 13.6.0 — 2023-12-12
14
+
15
+ ### 💡 Others
16
+
17
+ - Bump C++ compiler setting to C++20. ([#25548](https://github.com/expo/expo/pull/25548) by [@kudo](https://github.com/kudo))
18
+
13
19
  ## 13.5.0 — 2023-11-14
14
20
 
15
21
  ### 🛠 Breaking changes
package/ExpoGL.podspec CHANGED
@@ -17,7 +17,7 @@ Pod::Spec.new do |s|
17
17
  s.dependency 'ExpoModulesCore'
18
18
  s.dependency 'ReactCommon/turbomodule/core'
19
19
 
20
- s.compiler_flags = '-x objective-c++ -std=c++1z'
20
+ s.compiler_flags = '-x objective-c++ -std=c++20'
21
21
  s.pod_target_xcconfig = {
22
22
  'GCC_PREPROCESSOR_DEFINITIONS' => '$(inherited) GLES_SILENCE_DEPRECATION=1'
23
23
  }
@@ -4,7 +4,7 @@ project(expo-gl)
4
4
 
5
5
  set(CMAKE_EXPORT_COMPILE_COMMANDS ON)
6
6
  set(CMAKE_VERBOSE_MAKEFILE ON)
7
- set(CMAKE_CXX_STANDARD 17)
7
+ set(CMAKE_CXX_STANDARD 20)
8
8
 
9
9
  set(PACKAGE_NAME "expo-gl")
10
10
  set(BUILD_DIR ${CMAKE_SOURCE_DIR}/build)
@@ -5,7 +5,7 @@ apply plugin: 'kotlin-android'
5
5
  apply plugin: 'maven-publish'
6
6
 
7
7
  group = 'host.exp.exponent'
8
- version = '13.5.0'
8
+ version = '13.6.0'
9
9
 
10
10
  def reactNativeArchitectures() {
11
11
  def value = project.getProperties().get("reactNativeArchitectures")
@@ -108,7 +108,7 @@ android {
108
108
  namespace "expo.modules.gl"
109
109
  defaultConfig {
110
110
  versionCode 31
111
- versionName "13.5.0"
111
+ versionName "13.6.0"
112
112
 
113
113
  externalNativeBuild {
114
114
  cmake {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "expo-gl",
3
- "version": "13.5.0",
3
+ "version": "13.6.0",
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": "3142a086578deffd8704a8f1b6f0f661527d836c"
52
+ "gitHead": "6aca7ce098ddc667776a3d7cf612adbb985e264a"
53
53
  }