-
Notifications
You must be signed in to change notification settings - Fork 60
/
CHANGELOG.md
87 lines (61 loc) · 1.74 KB
/
CHANGELOG.md
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
# Changelog
All notable changes to this project will be documented in this file. The
format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/).
This project tracks the **major** and **minor** versions set upstream by
[`h3`](github.com/uber/h3), and introduces backwards-compatible updates and/or
fixes via **patches** with patch version bumps.
## 4.0.0
All new functions to match H3 v4.
See <https://h3geo.org/docs/library/migrating-3.x> for upstream changes, and the
[README.md](./README.md) for upstream to h3-go binding name mapping.
## 3.7.1
### Added
* Functions to cover full functionality (#46)
* `Res0IndexCount`
* `GetRes0Indexes`
* `DistanceBetween`
* `ToCenterChild`
* `MaxFaceCount`
* `GetFaces`
* `PentagonIndexCount`
* `GetPentagonIndexes`
* `HexAreaKm2`
* `HexAreaM2`
* `PointDistRads`
* `PointDistKm`
* `PointDistM`
* `CellAreaRads2`
* `CellAreaKm2`
* `CellAreaM2`
* `EdgeLengthKm`
* `EdgeLengthM`
* `ExactEdgeLengthRads`
* `ExactEdgeLengthKm`
* `ExactEdgeLengthM`
* `NumHexagons`
## 3.7.0
### Added
* `SetToLinkedGeo` function (#41)
* `Line` function (#37)
## 3.0.2
### Fixed
* `go mod vendor` now works correctly (#30, #32)
### Added
* Some useful H3 constants (#22):
* `MaxResolution`
* `NumIcosaFaces`
* `NumBaseCells`
* Support for GOMODULES (#24)
## 3.0.1
### Added
* `Polyfill` function (#19).
### Changed
* [breaking] `Uncompat` now returns `([]H3Index, error)` instead of `[]H3Index`
to accommodate error scenario from C API (#19).
### Fixed
* panic when using `Uncompact` with invalid resolutions (#20).
* latitudes and longitudes outside of respective ranges when unprojecting in
certain areas (#7, #9, #13).
## v3.0.0
### Added
* everything! first commit.