expo-updates-interface 0.8.0 → 0.9.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,18 @@
10
10
 
11
11
  ### 💡 Others
12
12
 
13
+ ## 0.9.0 — 2023-02-03
14
+
15
+ ### 💡 Others
16
+
17
+ - On Android bump `compileSdkVersion` and `targetSdkVersion` to `33`. ([#20721](https://github.com/expo/expo/pull/20721) by [@lukmccall](https://github.com/lukmccall))
18
+
19
+ ## 0.8.1 — 2022-11-02
20
+
21
+ ### 💡 Others
22
+
23
+ - Removed deprecated Android `kotlin-android-extensions` plugin ([#19732](https://github.com/expo/expo/pull/19732) by [@josephyanks](https://github.com/josephyanks))
24
+
13
25
  ## 0.8.0 — 2022-10-25
14
26
 
15
27
  ### 🛠 Breaking changes
@@ -1,10 +1,9 @@
1
1
  apply plugin: 'com.android.library'
2
2
  apply plugin: 'kotlin-android'
3
- apply plugin: 'kotlin-android-extensions'
4
3
  apply plugin: 'maven-publish'
5
4
 
6
5
  group = 'host.exp.exponent'
7
- version = '0.8.0'
6
+ version = '0.9.0'
8
7
 
9
8
  buildscript {
10
9
  def expoModulesCorePlugin = new File(project(":expo-modules-core").projectDir.absolutePath, "ExpoModulesCorePlugin.gradle")
@@ -60,7 +59,7 @@ afterEvaluate {
60
59
  }
61
60
 
62
61
  android {
63
- compileSdkVersion safeExtGet("compileSdkVersion", 31)
62
+ compileSdkVersion safeExtGet("compileSdkVersion", 33)
64
63
 
65
64
  compileOptions {
66
65
  sourceCompatibility JavaVersion.VERSION_11
@@ -73,9 +72,9 @@ android {
73
72
 
74
73
  defaultConfig {
75
74
  minSdkVersion safeExtGet("minSdkVersion", 21)
76
- targetSdkVersion safeExtGet("targetSdkVersion", 31)
75
+ targetSdkVersion safeExtGet("targetSdkVersion", 33)
77
76
  versionCode 1
78
- versionName '0.8.0'
77
+ versionName '0.9.0'
79
78
  }
80
79
  lintOptions {
81
80
  abortOnError false
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "expo-updates-interface",
3
- "version": "0.8.0",
3
+ "version": "0.9.0",
4
4
  "description": "Native interface for modules that optionally depend on expo-updates, e.g. expo-dev-launcher.",
5
5
  "main": "index.js",
6
6
  "keywords": [
@@ -23,5 +23,5 @@
23
23
  "peerDependencies": {
24
24
  "expo": "*"
25
25
  },
26
- "gitHead": "957cf0793ac316152e694cbe352953e07bffcb45"
26
+ "gitHead": "1815e2eaad8c753588c7b1eb74420174a28e01f4"
27
27
  }