Skip to content

Commit f5be48d

Browse files
committed
Release 0.3.0
1 parent 057979d commit f5be48d

File tree

4 files changed

+36
-7
lines changed

4 files changed

+36
-7
lines changed

CHANGELOG.md

Lines changed: 30 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,36 @@
11
# Change Log
22
All notable changes to `ClusterKit` project will be documented in this file.
33

4-
---
4+
---
5+
6+
## [0.3.0](https://github.com/hulab/ClusterKit/releases/tag/0.3.0) - October 18, 2017
7+
8+
9+
> <span style="color:red"> **Breaking changes**: </span>
10+
>
11+
> + <span style="color:red">Your model do not need to adopt the `CKAnnotation` protocol anymore, only `MKAnnotation`.</span>
12+
>
13+
> + <span style="color:red">For **GoogleMaps**: don't forget to update the `GMSMapView+ClusterKit` files.</span>
14+
15+
16+
### Fixed
17+
18+
- **[Issue #23](https://github.com/hulab/ClusterKit/issues/23)**: Fix flickering pin on MapKit when updating clusters.
19+
Identical clusters are no more replaced and the clusters animation have been improved to be performed by batch.
20+
21+
### Added
22+
23+
- **Mapbox**: ClusterKit is now compatible with [Mapbox](https://www.mapbox.com/).
24+
25+
### Removed
26+
27+
- **CKAnnotation protocol**: CKAnnotation is no more accurate since we don't replace identical clusters.
28+
29+
### Updated
30+
31+
- **CKCluster**: Compute the cluster bounds. Add cluster comparison methods.
32+
33+
### Fixed
534

635
## [0.2.0](https://github.com/hulab/ClusterKit/releases/tag/0.2.0) - July 24, 2017
736

ClusterKit.podspec

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,16 @@
11

22
Pod::Spec.new do |s|
33
s.name = "ClusterKit"
4-
s.version = "0.2.0"
5-
s.summary = "ClusterKit is a map clustering framework targeting MapKit and Google Maps."
4+
s.version = "0.3.0"
5+
s.summary = "ClusterKit is a map clustering framework targeting MapKit, Google Maps and Mapbox."
66

77
s.description = <<-DESC
88
ClusterKit is an efficient clustering framework with the following features:
9-
- Supports MapKit AND GoogleMaps.
9+
- Native supports of MapKit, GoogleMaps and Mapbox.
1010
- Comes with 2 clustering algorithms, a Grid Based Algorithm and a Non Hierarchical Distance Based Algorithm. Other algorithms can easily be integrated.
1111
- Annotations are stored in a QuadTree for efficient region queries.
1212
- Cluster center can be switched to Centroid, Nearest Centroid, Bottom.
13+
- Handles pin selection as well as drag and dropping.
1314
- Written in Objective-C with full Swift interop support.
1415
DESC
1516

ClusterKit.xcodeproj/project.pbxproj

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -107,8 +107,7 @@
107107
9C2C4A0C1F94BACE00B22745 /* MGLMapView+ClusterKit.h */,
108108
9C2C4A0D1F94BACE00B22745 /* MGLMapView+ClusterKit.m */,
109109
);
110-
name = Mapbox;
111-
path = "New Group";
110+
path = Mapbox;
112111
sourceTree = "<group>";
113112
};
114113
9C53CD011E03F51C000AD9B8 /* ClusterKit */ = {

Framework/Info.plist

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
<key>CFBundlePackageType</key>
1616
<string>FMWK</string>
1717
<key>CFBundleShortVersionString</key>
18-
<string>0.2.0</string>
18+
<string>0.3.0</string>
1919
<key>CFBundleVersion</key>
2020
<string>$(CURRENT_PROJECT_VERSION)</string>
2121
<key>NSPrincipalClass</key>

0 commit comments

Comments
 (0)