From fd88b687998c3bf0a4c06fcc8fb48b18d0f3b183 Mon Sep 17 00:00:00 2001 From: Matt Topol Date: Mon, 16 Oct 2023 11:28:34 -0400 Subject: [PATCH] GH-38285: [Go] Slight deps and docs update (#38284) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Making sure the documentation that shows up on pkg.go.dev will show that the package is compatible with go1.19+ slight patch/minor version updates of some dependencies along with a documentation update in `doc.go`. * Closes: #38285 Authored-by: Matt Topol Signed-off-by: Raúl Cumplido --- go/arrow/doc.go | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/go/arrow/doc.go b/go/arrow/doc.go index ad03f2eca8ca1..4a5f5a3c9ef72 100644 --- a/go/arrow/doc.go +++ b/go/arrow/doc.go @@ -22,16 +22,15 @@ language-independent columnar memory format for flat and hierarchical data, orga operations on modern hardware. It also provides computational libraries and zero-copy streaming messaging and inter-process communication. -Basics +# Basics The fundamental data structure in Arrow is an Array, which holds a sequence of values of the same type. An array consists of memory holding the data and an additional validity bitmap that indicates if the corresponding entry in the array is valid (not null). If the array has no null entries, it is possible to omit this bitmap. -Requirements +# Requirements -Despite the go.mod stating go1.18, everything except for the compute package -is able to be built with go1.17 (and most is also compatible with go1.16). +Despite the go.mod stating go1.20, everything is able to be built with go1.19 or higher. To build with tinygo include the noasm build tag. */