This is an automated email from the ASF dual-hosted git repository. placave pushed a commit to branch go-version-123 in repository https://gitbox.apache.org/repos/asf/datasketches-go.git
commit e17faacae968b51d83b114d75020e170919ed54d Author: Pierre Lacave <[email protected]> AuthorDate: Sat Jan 18 12:36:05 2025 +0100 Bump to go 1.24.5 and update Readme wrt CPC sketch progress --- .github/workflows/go.yml | 2 +- README.md | 6 ++++-- go.mod | 4 ++-- 3 files changed, 7 insertions(+), 5 deletions(-) diff --git a/.github/workflows/go.yml b/.github/workflows/go.yml index e83f266..3b5402d 100644 --- a/.github/workflows/go.yml +++ b/.github/workflows/go.yml @@ -15,7 +15,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - go-version: [ '1.22.x' ] + go-version: [ '1.23.x' ] steps: - uses: actions/checkout@v3 diff --git a/README.md b/README.md index 3ebc1ea..7bb2a5c 100644 --- a/README.md +++ b/README.md @@ -39,7 +39,7 @@ If you are interested in making contributions to this site please see our [Commu | Type | Implementation | Status | |--------------|-------------------------|--| | Cardinality | | | -| | CpcSketch | ❌ | +| | CpcSketch | 🚧 | | | HllSketch | ⚠️ | | | ThetaSketch | ❌ | | | TupleSketch<S> | ❌ | @@ -75,6 +75,8 @@ If you are interested in making contributions to this site please see our [Commu ⚠️ = Implemented but not officially released +🚧 = In progress + ================= -This code requires Go 1.22 +This code requires Go 1.23 diff --git a/go.mod b/go.mod index 82705d4..d5d0190 100644 --- a/go.mod +++ b/go.mod @@ -17,9 +17,9 @@ module github.com/apache/datasketches-go -go 1.22 +go 1.23 -toolchain go1.22.5 +toolchain go1.23.5 require ( github.com/stretchr/testify v1.8.4 --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
