Skip to content
This repository was archived by the owner on Jan 16, 2024. It is now read-only.

Commit 3bf6fe4

Browse files
committed
Bundle 10.0.1-1 (2022-12-05)
1 parent f1afa65 commit 3bf6fe4

17 files changed

+13
-17
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
# arrow 10.0.0-1
1+
# arrow 10.0.1-1
22

3-
- mingw-w64-i686-arrow-10.0.0-1-any.pkg.tar.xz
3+
- mingw-w64-i686-arrow-10.0.1-1-any.pkg.tar.xz
44
- mingw-w64-i686-aws-sdk-cpp-1.7.365-1-any.pkg.tar.xz
55
- mingw-w64-i686-brotli-1.0.9-4-any.pkg.tar.xz
66
- mingw-w64-i686-openssl-1.1.1.m-9800-any.pkg.tar.xz
@@ -13,7 +13,7 @@
1313
- mingw-w64-i686-thrift-0.13.0-1-any.pkg.tar.xz
1414
- mingw-w64-i686-zstd-1.4.4-1-any.pkg.tar.xz
1515
- mingw-w64-i686-libutf8proc-2.4.0-2-any.pkg.tar.xz
16-
- mingw-w64-x86_64-arrow-10.0.0-1-any.pkg.tar.xz
16+
- mingw-w64-x86_64-arrow-10.0.1-1-any.pkg.tar.xz
1717
- mingw-w64-x86_64-aws-sdk-cpp-1.7.365-1-any.pkg.tar.xz
1818
- mingw-w64-x86_64-brotli-1.0.9-4-any.pkg.tar.xz
1919
- mingw-w64-x86_64-openssl-1.1.1.m-9800-any.pkg.tar.xz
@@ -26,7 +26,7 @@
2626
- mingw-w64-x86_64-thrift-0.13.0-1-any.pkg.tar.xz
2727
- mingw-w64-x86_64-zstd-1.4.4-1-any.pkg.tar.xz
2828
- mingw-w64-x86_64-libutf8proc-2.4.0-2-any.pkg.tar.xz
29-
- mingw-w64-ucrt-x86_64-arrow-10.0.0-1-any.pkg.tar.xz
29+
- mingw-w64-ucrt-x86_64-arrow-10.0.1-1-any.pkg.tar.xz
3030
- mingw-w64-ucrt-x86_64-aws-sdk-cpp-1.7.365-1-any.pkg.tar.xz
3131
- mingw-w64-ucrt-x86_64-brotli-1.0.9-4-any.pkg.tar.xz
3232
- mingw-w64-ucrt-x86_64-openssl-1.1.1.m-9800-any.pkg.tar.xz

include/arrow/util/config.h

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -17,22 +17,22 @@
1717

1818
#define ARROW_VERSION_MAJOR 10
1919
#define ARROW_VERSION_MINOR 0
20-
#define ARROW_VERSION_PATCH 0
20+
#define ARROW_VERSION_PATCH 1
2121
#define ARROW_VERSION ((ARROW_VERSION_MAJOR * 1000) + ARROW_VERSION_MINOR) * 1000 + ARROW_VERSION_PATCH
2222

23-
#define ARROW_VERSION_STRING "10.0.0"
23+
#define ARROW_VERSION_STRING "10.0.1"
2424

2525
#define ARROW_SO_VERSION "1000"
26-
#define ARROW_FULL_SO_VERSION "1000.0.0"
26+
#define ARROW_FULL_SO_VERSION "1000.1.0"
2727

2828
#define ARROW_CXX_COMPILER_ID "GNU"
2929
#define ARROW_CXX_COMPILER_VERSION "8.3.0"
3030
#define ARROW_CXX_COMPILER_FLAGS " -fdiagnostics-color=always -O2 -DNDEBUG -ftree-vectorize"
3131

3232
#define ARROW_BUILD_TYPE "RELEASE"
3333

34-
#define ARROW_GIT_ID "aa7118b6e5f49b354fa8a93d9cf363c9ebe9a3f0"
35-
#define ARROW_GIT_DESCRIPTION "v8-9.0.257.17-65-gaa7118b"
34+
#define ARROW_GIT_ID "9a233a4bcfdce2f6a79dbe836ac46578f77c18d6"
35+
#define ARROW_GIT_DESCRIPTION "v8-9.0.257.17-67-g9a233a4"
3636

3737
#define ARROW_PACKAGE_KIND ""
3838

include/arrow/util/simd.h

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -41,8 +41,4 @@
4141
#include <arm_neon.h>
4242
#endif
4343

44-
#ifdef ARROW_HAVE_ARMV8_CRC
45-
#include <arm_acle.h>
46-
#endif
47-
4844
#endif

include/arrow/util/visibility.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
#pragma GCC diagnostic ignored "-Wattributes"
2727
#endif
2828

29-
#if defined(__cplusplus) && (defined(__GNUC__) || defined(__clang__))
29+
#if defined(__cplusplus) && defined(__GNUC__) && !defined(__clang__)
3030
// Use C++ attribute syntax where possible to avoid GCC parser bug
3131
// (https://stackoverflow.com/questions/57993818/gcc-how-to-combine-attribute-dllexport-and-nodiscard-in-a-struct-de)
3232
#define ARROW_DLLEXPORT [[gnu::dllexport]]

0 commit comments

Comments
 (0)