Prepare for /v5 release
- Id
- 9f4547b08ddf621ffc3f07141d6923ebf54dbd5d
- Author
- Caio
- Commit time
- 2025-11-29T14:52:15+01:00
Modified README.md
This package provides an implementation of Ted Dunning's t-digest data
structure in Go.
-* [Documentation](https://pkg.go.dev/github.com/caio/go-tdigest/v4)
+* [Documentation](https://pkg.go.dev/github.com/caio/go-tdigest/v5)
* [Issue tracker](https://github.com/caio/go-tdigest/issues)
## Project Status
This package uses go modules. Our releases are tagged and signed following
the [Semantic Versioning][semver] scheme.
- go get github.com/caio/go-tdigest/v4
+ go get github.com/caio/go-tdigest/v5
[semver]: http://semver.org/
"fmt"
"math/rand"
- "github.com/caio/go-tdigest/v4"
+ "github.com/caio/go-tdigest/v5"
)
func main() {
Modified go.mod
-module github.com/caio/go-tdigest/v4
+module github.com/caio/go-tdigest/v5
go 1.18