expo-file-system 15.2.0 → 15.2.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,16 @@
10
10
 
11
11
  ### 💡 Others
12
12
 
13
+ ## 15.2.2 — 2023-02-09
14
+
15
+ _This version does not introduce any user-facing changes._
16
+
17
+ ## 15.2.1 — 2023-02-09
18
+
19
+ ### 🐛 Bug fixes
20
+
21
+ - Add utf-8 uri support on iOS. ([#21098](https://github.com/expo/expo/pull/21098) by [@gabrieldonadel](https://github.com/gabrieldonadel))
22
+
13
23
  ## 15.2.0 — 2023-02-03
14
24
 
15
25
  ### 💡 Others
package/README.md CHANGED
@@ -1,4 +1,11 @@
1
- # expo-file-system
1
+ <p>
2
+ <a href="https://docs.expo.dev/versions/latest/sdk/filesystem/">
3
+ <img
4
+ src="../../.github/resources/expo-file-system.svg"
5
+ alt="expo-file-system"
6
+ height="64" />
7
+ </a>
8
+ </p>
2
9
 
3
10
  Provides access to the local file system on the device.
4
11
 
@@ -3,7 +3,7 @@ apply plugin: 'kotlin-android'
3
3
  apply plugin: 'maven-publish'
4
4
 
5
5
  group = 'host.exp.exponent'
6
- version = '15.2.0'
6
+ version = '15.2.2'
7
7
 
8
8
  buildscript {
9
9
  def expoModulesCorePlugin = new File(project(":expo-modules-core").projectDir.absolutePath, "ExpoModulesCorePlugin.gradle")
@@ -22,7 +22,7 @@ buildscript {
22
22
  if (ext.has("kotlinVersion")) {
23
23
  ext.kotlinVersion()
24
24
  } else {
25
- ext.safeExtGet("kotlinVersion", "1.6.10")
25
+ ext.safeExtGet("kotlinVersion", "1.8.10")
26
26
  }
27
27
  }
28
28
 
@@ -74,7 +74,7 @@ android {
74
74
  minSdkVersion safeExtGet("minSdkVersion", 21)
75
75
  targetSdkVersion safeExtGet("targetSdkVersion", 33)
76
76
  versionCode 30
77
- versionName "15.2.0"
77
+ versionName "15.2.2"
78
78
  }
79
79
  lintOptions {
80
80
  abortOnError false
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "expo-file-system",
3
- "version": "15.2.0",
3
+ "version": "15.2.2",
4
4
  "description": "Provides access to the local file system on the device.",
5
5
  "main": "build/index.js",
6
6
  "types": "build/index.d.ts",
@@ -44,5 +44,5 @@
44
44
  "peerDependencies": {
45
45
  "expo": "*"
46
46
  },
47
- "gitHead": "1815e2eaad8c753588c7b1eb74420174a28e01f4"
47
+ "gitHead": "b019b92ea02e108eece600aae9fb104a3611bdeb"
48
48
  }