Skip to content

Commit

Permalink
Fix Accuracy.nearestTenMeters on iOS. Update changelog and bump to v1…
Browse files Browse the repository at this point in the history
….0.2.
  • Loading branch information
lukaspili committed Feb 3, 2020
1 parent c72c7e3 commit 8c2307f
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 3 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## [1.0.2]

- Fix `Accuracy.nearestTenMeters` on iOS

## [1.0.1]

- Update to streams_channel 0.2.3
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ Add geolocation to your pubspec.yaml:

```yaml
dependencies:
geolocation: ^1.0.1
geolocation: ^1.0.2
```
## Import
Expand Down
2 changes: 1 addition & 1 deletion ios/Classes/Data/Accuracy.swift
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ enum Accuracy: String, Codable {
case threeKilometers = "threeKilometers"
case kilometer = "kilometer"
case hundredMeters = "hundredMeters"
case nearestTenMeters = "NearestTenMeters"
case nearestTenMeters = "nearestTenMeters"
case best = "best"
case bestForNavigation = "bestForNavigation"

Expand Down
2 changes: 1 addition & 1 deletion pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: geolocation
description: Location plugin for iOS and Android.
version: 1.0.1
version: 1.0.2
homepage: https://github.com/loup-v/geolocation/

environment:
Expand Down

0 comments on commit 8c2307f

Please sign in to comment.