Skip to content

Commit 46d1f4b

Browse files
authored
Update H3 to v3.6.2. (#67)
1 parent 4ebe589 commit 46d1f4b

File tree

5 files changed

+18
-7
lines changed

5 files changed

+18
-7
lines changed

CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,17 @@ This project adheres to [Semantic Versioning](http://semver.org/).
66

77
We track the MAJOR and MINOR version levels of Uber's H3 project (https://github.com/uber/h3) but maintain independent patch levels so we can make small fixes and non breaking changes.
88

9+
## [3.6.2] - 2020-1-8
10+
### Changed
11+
- Revert new polyfill algorithm until reported issues are fixed.
12+
13+
## [3.6.1] - 2019-11-23
14+
### Fixed
15+
- `compact` handles zero length input correctly.
16+
- `bboxHexRadius` scaling factor adjusted to guarantee containment for `polyfill`.
17+
- `polyfill` new algorithm for up to 3x perf boost.
18+
- Fix CMake targets for KML generation.
19+
920
## [3.6.0] - 2019-8-14
1021
### Added
1122
- `center_child` method to find center child at given resolution (#62).

Gemfile.lock

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
PATH
22
remote: .
33
specs:
4-
h3 (3.6.1)
4+
h3 (3.6.2)
55
ffi (~> 1.9)
66
rgeo-geojson (~> 2.1)
77
zeitwerk (~> 2.1)
@@ -17,7 +17,7 @@ GEM
1717
tins (~> 1.6)
1818
diff-lcs (1.3)
1919
docile (1.3.1)
20-
ffi (1.11.2)
20+
ffi (1.11.3)
2121
json (2.1.0)
2222
rake (12.3.2)
2323
rgeo (2.1.1)
@@ -46,7 +46,7 @@ GEM
4646
thor (0.19.4)
4747
tins (1.20.2)
4848
yard (0.9.20)
49-
zeitwerk (2.2.1)
49+
zeitwerk (2.2.2)
5050

5151
PLATFORMS
5252
ruby
@@ -59,4 +59,4 @@ DEPENDENCIES
5959
yard (~> 0.9)
6060

6161
BUNDLED WITH
62-
1.17.2
62+
1.17.3

lib/h3/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
module H3
2-
VERSION = "3.6.1".freeze
2+
VERSION = "3.6.2".freeze
33
end

spec/region_spec.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@
4242
File.read(File.join(File.dirname(__FILE__), "support/fixtures/banbury.json"))
4343
end
4444
let(:resolution) { 9 }
45-
let(:expected_count) { 36_193 }
45+
let(:expected_count) { 75_367 }
4646

4747
subject(:max_polyfill_size) { H3.max_polyfill_size(geojson, resolution) }
4848

0 commit comments

Comments
 (0)