expo-updates-interface 0.4.0 → 0.5.2

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,20 @@
10
10
 
11
11
  ### 💡 Others
12
12
 
13
+ ## 0.5.2 — 2022-05-09
14
+
15
+ _This version does not introduce any user-facing changes._
16
+
17
+ ## 0.5.1 — 2022-02-01
18
+
19
+ ### 🐛 Bug fixes
20
+
21
+ - Fix `Plugin with id 'maven' not found` build error from Android Gradle 7. ([#16080](https://github.com/expo/expo/pull/16080) by [@kudo](https://github.com/kudo))
22
+
23
+ ## 0.5.0 — 2021-12-03
24
+
25
+ _This version does not introduce any user-facing changes._
26
+
13
27
  ## 0.4.0 — 2021-09-28
14
28
 
15
29
  ### 🐛 Bug fixes
@@ -1,10 +1,10 @@
1
1
  apply plugin: 'com.android.library'
2
2
  apply plugin: 'kotlin-android'
3
3
  apply plugin: 'kotlin-android-extensions'
4
- apply plugin: 'maven'
4
+ apply plugin: 'maven-publish'
5
5
 
6
6
  group = 'host.exp.exponent'
7
- version = '0.4.0'
7
+ version = '0.5.2'
8
8
 
9
9
  buildscript {
10
10
  // Simple helper that allows the root project to override versions declared by this library.
@@ -21,27 +21,25 @@ buildscript {
21
21
  }
22
22
  }
23
23
 
24
- // Upload android library to maven with javadoc and android sources
25
- configurations {
26
- deployerJars
27
- }
28
-
29
24
  // Creating sources with comments
30
25
  task androidSourcesJar(type: Jar) {
31
26
  classifier = 'sources'
32
27
  from android.sourceSets.main.java.srcDirs
33
28
  }
34
29
 
35
- // Put the androidSources and javadoc to the artifacts
36
- artifacts {
37
- archives androidSourcesJar
38
- }
39
-
40
- uploadArchives {
41
- repositories {
42
- mavenDeployer {
43
- configuration = configurations.deployerJars
44
- repository(url: mavenLocal().url)
30
+ afterEvaluate {
31
+ publishing {
32
+ publications {
33
+ release(MavenPublication) {
34
+ from components.release
35
+ // Add additional sourcesJar to artifacts
36
+ artifact(androidSourcesJar)
37
+ }
38
+ }
39
+ repositories {
40
+ maven {
41
+ url = mavenLocal().url
42
+ }
45
43
  }
46
44
  }
47
45
  }
@@ -58,7 +56,7 @@ android {
58
56
  minSdkVersion safeExtGet("minSdkVersion", 21)
59
57
  targetSdkVersion safeExtGet("targetSdkVersion", 28)
60
58
  versionCode 1
61
- versionName '0.4.0'
59
+ versionName '0.5.2'
62
60
  }
63
61
  lintOptions {
64
62
  abortOnError false
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "expo-updates-interface",
3
- "version": "0.4.0",
3
+ "version": "0.5.2",
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": [
@@ -19,5 +19,6 @@
19
19
  "author": "650 Industries, Inc.",
20
20
  "license": "MIT",
21
21
  "homepage": "https://docs.expo.dev/versions/latest/sdk/module-template",
22
- "gitHead": "1fffde73411ee7a642b98f1506a8de921805d52b"
22
+ "dependencies": {},
23
+ "gitHead": "2878ac3adc2fd5e2a7a62f32ddde1ca20e6cd918"
23
24
  }