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

Commit

Permalink
Bundle 10.0.1-1 (2022-12-05)
Browse files Browse the repository at this point in the history
  • Loading branch information
jeroen committed Dec 5, 2022
1 parent f1afa65 commit 3bf6fe4
Show file tree
Hide file tree
Showing 17 changed files with 13 additions and 17 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# arrow 10.0.0-1
# arrow 10.0.1-1

- mingw-w64-i686-arrow-10.0.0-1-any.pkg.tar.xz
- mingw-w64-i686-arrow-10.0.1-1-any.pkg.tar.xz
- mingw-w64-i686-aws-sdk-cpp-1.7.365-1-any.pkg.tar.xz
- mingw-w64-i686-brotli-1.0.9-4-any.pkg.tar.xz
- mingw-w64-i686-openssl-1.1.1.m-9800-any.pkg.tar.xz
Expand All @@ -13,7 +13,7 @@
- mingw-w64-i686-thrift-0.13.0-1-any.pkg.tar.xz
- mingw-w64-i686-zstd-1.4.4-1-any.pkg.tar.xz
- mingw-w64-i686-libutf8proc-2.4.0-2-any.pkg.tar.xz
- mingw-w64-x86_64-arrow-10.0.0-1-any.pkg.tar.xz
- mingw-w64-x86_64-arrow-10.0.1-1-any.pkg.tar.xz
- mingw-w64-x86_64-aws-sdk-cpp-1.7.365-1-any.pkg.tar.xz
- mingw-w64-x86_64-brotli-1.0.9-4-any.pkg.tar.xz
- mingw-w64-x86_64-openssl-1.1.1.m-9800-any.pkg.tar.xz
Expand All @@ -26,7 +26,7 @@
- mingw-w64-x86_64-thrift-0.13.0-1-any.pkg.tar.xz
- mingw-w64-x86_64-zstd-1.4.4-1-any.pkg.tar.xz
- mingw-w64-x86_64-libutf8proc-2.4.0-2-any.pkg.tar.xz
- mingw-w64-ucrt-x86_64-arrow-10.0.0-1-any.pkg.tar.xz
- mingw-w64-ucrt-x86_64-arrow-10.0.1-1-any.pkg.tar.xz
- mingw-w64-ucrt-x86_64-aws-sdk-cpp-1.7.365-1-any.pkg.tar.xz
- mingw-w64-ucrt-x86_64-brotli-1.0.9-4-any.pkg.tar.xz
- mingw-w64-ucrt-x86_64-openssl-1.1.1.m-9800-any.pkg.tar.xz
Expand Down
10 changes: 5 additions & 5 deletions include/arrow/util/config.h
Original file line number Diff line number Diff line change
Expand Up @@ -17,22 +17,22 @@

#define ARROW_VERSION_MAJOR 10
#define ARROW_VERSION_MINOR 0
#define ARROW_VERSION_PATCH 0
#define ARROW_VERSION_PATCH 1
#define ARROW_VERSION ((ARROW_VERSION_MAJOR * 1000) + ARROW_VERSION_MINOR) * 1000 + ARROW_VERSION_PATCH

#define ARROW_VERSION_STRING "10.0.0"
#define ARROW_VERSION_STRING "10.0.1"

#define ARROW_SO_VERSION "1000"
#define ARROW_FULL_SO_VERSION "1000.0.0"
#define ARROW_FULL_SO_VERSION "1000.1.0"

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

#define ARROW_BUILD_TYPE "RELEASE"

#define ARROW_GIT_ID "aa7118b6e5f49b354fa8a93d9cf363c9ebe9a3f0"
#define ARROW_GIT_DESCRIPTION "v8-9.0.257.17-65-gaa7118b"
#define ARROW_GIT_ID "9a233a4bcfdce2f6a79dbe836ac46578f77c18d6"
#define ARROW_GIT_DESCRIPTION "v8-9.0.257.17-67-g9a233a4"

#define ARROW_PACKAGE_KIND ""

Expand Down
4 changes: 0 additions & 4 deletions include/arrow/util/simd.h
Original file line number Diff line number Diff line change
Expand Up @@ -41,8 +41,4 @@
#include <arm_neon.h>
#endif

#ifdef ARROW_HAVE_ARMV8_CRC
#include <arm_acle.h>
#endif

#endif
2 changes: 1 addition & 1 deletion include/arrow/util/visibility.h
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
#pragma GCC diagnostic ignored "-Wattributes"
#endif

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

0 comments on commit 3bf6fe4

Please sign in to comment.