expo-background-task 0.0.0 → 0.0.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,12 @@
10
10
 
11
11
  ### 💡 Others
12
12
 
13
+ ## 0.0.1 — 2025-01-21
14
+
15
+ ### 💡 Others
16
+
17
+ - Update README description
18
+
13
19
  ## 0.0.0 — 2025-01-21
14
20
 
15
21
  ### 🎉 New features
package/README.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # expo-background-task
2
2
 
3
- Expo universal module for BackgroundTask API
3
+ Expo Android and iOS module for Background Task APIs
4
4
 
5
5
  # API documentation
6
6
 
@@ -1,7 +1,7 @@
1
1
  apply plugin: 'com.android.library'
2
2
 
3
3
  group = 'host.exp.exponent'
4
- version = '0.0.0'
4
+ version = '0.0.1'
5
5
 
6
6
  def expoModulesCorePlugin = new File(project(":expo-modules-core").projectDir.absolutePath, "ExpoModulesCorePlugin.gradle")
7
7
  apply from: expoModulesCorePlugin
@@ -19,6 +19,6 @@ android {
19
19
  namespace "expo.modules.backgroundtask"
20
20
  defaultConfig {
21
21
  versionCode 23
22
- versionName "0.0.0"
22
+ versionName "0.0.1"
23
23
  }
24
24
  }
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "expo-background-task",
3
- "version": "0.0.0",
4
- "description": "Expo universal module for BackgroundTask API",
3
+ "version": "0.0.1",
4
+ "description": "Expo Android and iOS module for Background Task APIs",
5
5
  "main": "build/BackgroundTask.js",
6
6
  "types": "build/BackgroundTask.d.ts",
7
7
  "sideEffects": false,
@@ -32,12 +32,13 @@
32
32
  "license": "MIT",
33
33
  "homepage": "https://docs.expo.dev/versions/latest/sdk/background-task/",
34
34
  "dependencies": {
35
- "expo-task-manager": "~12.0.0"
35
+ "expo-task-manager": "~13.0.0"
36
36
  },
37
37
  "devDependencies": {
38
38
  "expo-module-scripts": "^4.0.0"
39
39
  },
40
40
  "peerDependencies": {
41
41
  "expo": "*"
42
- }
42
+ },
43
+ "gitHead": "4a7f6884bd19ebbd7544a2c7d10d98588384f493"
43
44
  }