Skip to content

Publish a release containing x/h3go #136

Description

@kaptinlin

The pure-Go github.com/uber/h3-go/v4/x/h3go package is useful for applications that cannot depend on cgo.

For example:

package main

import (
    "fmt"
    "log"

    "github.com/uber/h3-go/v4/x/h3go"
)

func main() {
    cell, err := h3go.LatLngToCell(
        h3go.LatLng{Lat: 37.7759, Lng: -122.4179},
        9,
    )
    if err != nil {
        log.Fatal(err)
    }

    fmt.Println(cell)
}

However, the latest tag currently does not contain this package:

$ go get github.com/uber/h3-go/v4/x/h3go@v4.5.0
go: module github.com/uber/h3-go/v4@v4.5.0 found, but does not contain package github.com/uber/h3-go/v4/x/h3go

Using x/h3go therefore requires pinning an unreleased commit through a pseudo-version.

Could you publish a new v4 release containing x/h3go?

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

      Milestone

      No milestone

      Relationships

      None yet

      Development

      No branches or pull requests

      Issue actions