@capacitor/filesystem 7.1.4 → 8.0.0-next.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.
@@ -11,7 +11,7 @@ Pod::Spec.new do |s|
11
11
  s.author = package['author']
12
12
  s.source = { :git => package['repository']['url'], :tag => s.version.to_s }
13
13
  s.source_files = 'ios/Sources/**/*.{swift,h,m,c,cc,mm,cpp}'
14
- s.ios.deployment_target = '14.0'
14
+ s.ios.deployment_target = '15.0'
15
15
  s.dependency 'Capacitor'
16
16
  s.dependency 'IONFilesystemLib', spec='~> 1.0.1'
17
17
  s.swift_version = '5.1'
package/Package.swift CHANGED
@@ -3,7 +3,7 @@ import PackageDescription
3
3
 
4
4
  let package = Package(
5
5
  name: "CapacitorFilesystem",
6
- platforms: [.iOS(.v14)],
6
+ platforms: [.iOS(.v15)],
7
7
  products: [
8
8
  .library(
9
9
  name: "CapacitorFilesystem",
@@ -22,10 +22,10 @@ apply plugin: 'kotlin-android'
22
22
 
23
23
  android {
24
24
  namespace "com.capacitorjs.plugins.filesystem"
25
- compileSdk project.hasProperty('compileSdkVersion') ? rootProject.ext.compileSdkVersion : 35
25
+ compileSdk project.hasProperty('compileSdkVersion') ? rootProject.ext.compileSdkVersion : 36
26
26
  defaultConfig {
27
- minSdkVersion project.hasProperty('minSdkVersion') ? rootProject.ext.minSdkVersion : 23
28
- targetSdkVersion project.hasProperty('targetSdkVersion') ? rootProject.ext.targetSdkVersion : 35
27
+ minSdkVersion project.hasProperty('minSdkVersion') ? rootProject.ext.minSdkVersion : 24
28
+ targetSdkVersion project.hasProperty('targetSdkVersion') ? rootProject.ext.targetSdkVersion : 36
29
29
  versionCode 1
30
30
  versionName "1.0"
31
31
  testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@capacitor/filesystem",
3
- "version": "7.1.4",
3
+ "version": "8.0.0-next.1",
4
4
  "description": "The Filesystem API provides a NodeJS-like API for working with files on the device.",
5
5
  "main": "dist/plugin.cjs.js",
6
6
  "module": "dist/esm/index.js",
@@ -46,17 +46,18 @@
46
46
  "prepublishOnly": "npm run build"
47
47
  },
48
48
  "dependencies": {
49
- "@capacitor/synapse": "^1.0.3"
49
+ "@capacitor/synapse": "^1.0.4"
50
50
  },
51
51
  "devDependencies": {
52
- "@capacitor/android": "7.0.1",
53
- "@capacitor/core": "7.0.1",
52
+ "@capacitor/android": "next",
53
+ "@capacitor/core": "next",
54
54
  "@capacitor/docgen": "^0.2.2",
55
- "@capacitor/ios": "7.0.1",
55
+ "@capacitor/ios": "next",
56
56
  "@ionic/eslint-config": "^0.4.0",
57
57
  "@ionic/prettier-config": "^4.0.0",
58
58
  "@ionic/swiftlint-config": "^2.0.0",
59
59
  "@semantic-release/changelog": "^6.0.3",
60
+ "@semantic-release/exec": "^7.1.0",
60
61
  "@semantic-release/git": "^10.0.1",
61
62
  "@semantic-release/github": "^11.0.1",
62
63
  "@semantic-release/npm": "^12.0.1",
@@ -71,7 +72,7 @@
71
72
  "typescript": "~5.4.5"
72
73
  },
73
74
  "peerDependencies": {
74
- "@capacitor/core": ">=7.0.0"
75
+ "@capacitor/core": ">=8.0.0-alpha.2"
75
76
  },
76
77
  "prettier": "@ionic/prettier-config",
77
78
  "swiftlint": "@ionic/swiftlint-config",