Skip to content

Commit 46e821a

Browse files
authored
Fix import, release MapLibre iOS 6.12.1 (#3279)
1 parent e6ce277 commit 46e821a

File tree

4 files changed

+8
-3
lines changed

4 files changed

+8
-3
lines changed

platform/ios/CHANGELOG.md

+5
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,11 @@ MapLibre welcomes participation and contributions from everyone. Please read [`M
44

55
## main
66

7+
## 6.12.1
8+
9+
- Use double quotes for MLNTileOperation.h import ([#3277](https://github.com/maplibre/maplibre-native/issues/3277)).
10+
- Warn on rejected line geometry ([#3088](https://github.com/maplibre/maplibre-native/pull/3088)).
11+
712
## 6.12.0
813

914
- Eliminate copies in deferred cleanup ([#3035](https://github.com/maplibre/maplibre-native/pull/3035)).

platform/ios/VERSION

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
6.12.0
1+
6.12.1

platform/ios/src/MLNMapViewDelegate.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#import <UIKit/UIKit.h>
22

3-
#import <MLNTileOperation.h>
43
#import "MLNCameraChangeReason.h"
4+
#import "MLNTileOperation.h"
55
#import "Mapbox.h"
66

77
NS_ASSUME_NONNULL_BEGIN

platform/macos/src/MLNMapViewDelegate.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#import <AppKit/AppKit.h>
22
#import <Foundation/Foundation.h>
3-
#import <MLNTileOperation.h>
3+
#import "MLNTileOperation.h"
44

55
NS_ASSUME_NONNULL_BEGIN
66

0 commit comments

Comments
 (0)