expo-maps 0.3.0 → 0.4.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,13 @@
10
10
 
11
11
  ### 💡 Others
12
12
 
13
+ ## 0.4.0 — 2023-11-14
14
+
15
+ ### 🛠 Breaking changes
16
+
17
+ - Bumped iOS deployment target to 13.4. ([#25063](https://github.com/expo/expo/pull/25063) by [@gabrieldonadel](https://github.com/gabrieldonadel))
18
+ - On `Android` bump `compileSdkVersion` and `targetSdkVersion` to `34`. ([#24708](https://github.com/expo/expo/pull/24708) by [@alanjhughes](https://github.com/alanjhughes))
19
+
13
20
  ## 0.3.0 — 2023-10-17
14
21
 
15
22
  ### 🛠 Breaking changes
@@ -3,7 +3,7 @@ apply plugin: 'kotlin-android'
3
3
  apply plugin: 'maven-publish'
4
4
 
5
5
  group = 'host.exp.exponent'
6
- version = '0.3.0'
6
+ version = '0.4.0'
7
7
 
8
8
  def expoModulesCorePlugin = new File(project(":expo-modules-core").projectDir.absolutePath, "ExpoModulesCorePlugin.gradle")
9
9
  if (expoModulesCorePlugin.exists()) {
@@ -53,11 +53,11 @@ afterEvaluate {
53
53
  android {
54
54
  // Remove this if and it's contents, when support for SDK49 is dropped
55
55
  if (!safeExtGet("expoProvidesDefaultConfig", false)) {
56
- compileSdkVersion safeExtGet("compileSdkVersion", 33)
56
+ compileSdkVersion safeExtGet("compileSdkVersion", 34)
57
57
 
58
58
  defaultConfig {
59
59
  minSdkVersion safeExtGet("minSdkVersion", 23)
60
- targetSdkVersion safeExtGet("targetSdkVersion", 33)
60
+ targetSdkVersion safeExtGet("targetSdkVersion", 34)
61
61
  }
62
62
 
63
63
  lintOptions {
@@ -80,7 +80,7 @@ android {
80
80
  namespace "expo.modules.maps"
81
81
  defaultConfig {
82
82
  versionCode 1
83
- versionName '0.3.0'
83
+ versionName '0.4.0'
84
84
  }
85
85
  publishing {
86
86
  singleVariant("release") {
@@ -10,13 +10,13 @@ Pod::Spec.new do |s|
10
10
  s.license = package['license']
11
11
  s.author = package['author']
12
12
  s.homepage = package['homepage']
13
- s.platform = :ios, '13.0'
13
+ s.platform = :ios, '13.4'
14
14
  s.source = { git: 'https://github.com/expo/expo.git' }
15
15
  s.static_framework = true
16
16
  s.source_files = 'ExpoMaps/**/*.{h,m,swift}'
17
17
  s.preserve_paths = 'ExpoMaps/**/*.{h,m,swift}'
18
18
  s.requires_arc = true
19
-
19
+
20
20
  s.dependency 'ExpoModulesCore'
21
21
  s.dependency 'GoogleMaps', '7.3.0'
22
22
  # s.dependency 'Google-Maps-iOS-Utils', '4.1.0'
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "expo-maps",
3
- "version": "0.3.0",
3
+ "version": "0.4.0",
4
4
  "description": "ExpoMaps standalone module",
5
5
  "main": "build/Map.js",
6
6
  "types": "build/Map.d.ts",
@@ -41,5 +41,5 @@
41
41
  "jest": {
42
42
  "preset": "expo-module-scripts/ios"
43
43
  },
44
- "gitHead": "da25937e2a99661cbe5eb60ca1d8d6245fc96a50"
44
+ "gitHead": "3142a086578deffd8704a8f1b6f0f661527d836c"
45
45
  }