diff --git a/.github/workflows/build-archlinux-latest.yml b/.github/workflows/build-archlinux-latest.yml index f345cc12..269a1d99 100644 --- a/.github/workflows/build-archlinux-latest.yml +++ b/.github/workflows/build-archlinux-latest.yml @@ -15,9 +15,6 @@ name: Compatibility Build on Arch Linux Latest on: - push: - tags: - - 'v*' workflow_dispatch: concurrency: diff --git a/.github/workflows/build-centos-latest.yaml b/.github/workflows/build-centos-latest.yaml index 7cb33146..cf21f63d 100644 --- a/.github/workflows/build-centos-latest.yaml +++ b/.github/workflows/build-centos-latest.yaml @@ -15,9 +15,6 @@ name: Compatibility Build on CentOS Latest on: - push: - tags: - - 'v*' workflow_dispatch: concurrency: diff --git a/.github/workflows/build-compatibility.yml b/.github/workflows/build-compatibility.yml index 67a1a680..3865ebca 100644 --- a/.github/workflows/build-compatibility.yml +++ b/.github/workflows/build-compatibility.yml @@ -15,9 +15,6 @@ name: Compatibility Build on: - push: - tags: - - 'v*' workflow_dispatch: concurrency: diff --git a/.github/workflows/build-test-graph.yml b/.github/workflows/build-test-graph.yml index ee4b23b6..76fe939d 100644 --- a/.github/workflows/build-test-graph.yml +++ b/.github/workflows/build-test-graph.yml @@ -39,7 +39,7 @@ jobs: strategy: matrix: os: [ubuntu-20.04] - malloc: [mimalloc] + malloc: [dlmalloc] metadata: [etcd] env: RUNNER_ARGS: "--meta=${{ matrix.metadata }}" diff --git a/CMakeLists.txt b/CMakeLists.txt index c85061a7..14c10117 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -2,7 +2,7 @@ cmake_minimum_required(VERSION 3.3) set(VINEYARD_MAJOR_VERSION 0) set(VINEYARD_MINOR_VERSION 13) -set(VINEYARD_PATCH_VERSION 2) +set(VINEYARD_PATCH_VERSION 3) set(VINEYARD_VERSION ${VINEYARD_MAJOR_VERSION}.${VINEYARD_MINOR_VERSION}.${VINEYARD_PATCH_VERSION}) message(STATUS "Configuring and building vineyard version '${VINEYARD_VERSION}'.") diff --git a/charts/vineyard-operator/Chart.yaml b/charts/vineyard-operator/Chart.yaml index 1bad8893..c1dee701 100644 --- a/charts/vineyard-operator/Chart.yaml +++ b/charts/vineyard-operator/Chart.yaml @@ -24,10 +24,10 @@ type: application # This is the chart version. This version number should be incremented each time you make changes # to the chart and its templates, including the app version. # Versions are expected to follow Semantic Versioning (https://semver.org/) -version: 0.13.2 +version: 0.13.3 # This is the version number of the application being deployed. This version number should be # incremented each time you make changes to the application. Versions are not expected to # follow Semantic Versioning. They should reflect the version the application is using. -appVersion: 0.13.2 +appVersion: 0.13.3 diff --git a/k8s/cmd/main.go b/k8s/cmd/main.go index b289ed98..4197e61e 100644 --- a/k8s/cmd/main.go +++ b/k8s/cmd/main.go @@ -45,7 +45,7 @@ var cmdLong = util.LongDesc(` var cmd = &cobra.Command{ Use: "vineyardctl [command]", - Version: "v0.13.2", + Version: "v0.13.3", Short: "vineyardctl is the command-line tool for working with the Vineyard Operator", Long: cmdLong, } diff --git a/setup.cfg b/setup.cfg index cca985b6..f097d557 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [metadata] -version = 0.13.2 +version = 0.13.3 [pycodestyle] max_line_length = 88 diff --git a/src/common/util/config.h b/src/common/util/config.h index 4cedb2e6..82502f67 100644 --- a/src/common/util/config.h +++ b/src/common/util/config.h @@ -18,11 +18,11 @@ limitations under the License. #define VINEYARD_VERSION_MAJOR 0 #define VINEYARD_VERSION_MINOR 13 -#define VINEYARD_VERSION_PATCH 2 +#define VINEYARD_VERSION_PATCH 3 #define VINEYARD_VERSION \ ((VINEYARD_VERSION_MAJOR * 1000) + VINEYARD_VERSION_MINOR) * 1000 + \ VINEYARD_VERSION_PATCH -#define VINEYARD_VERSION_STRING "0.13.2" +#define VINEYARD_VERSION_STRING "0.13.3" #endif // SRC_COMMON_UTIL_CONFIG_H_ diff --git a/test/arrow_data_structure_test.cc b/test/arrow_data_structure_test.cc index 8e6ea9c1..8f7228f5 100644 --- a/test/arrow_data_structure_test.cc +++ b/test/arrow_data_structure_test.cc @@ -526,9 +526,9 @@ int main(int argc, char** argv) { auto generator = [&column1, &column2, &pool](size_t chunk_index) { { - size_t size = (1L << 20) * 1L; + size_t size = (1L << 10) * 10L; { - std::vector vec(size / sizeof(int64_t), 0xff); + std::vector vec(size, 0xff); std::shared_ptr a1; arrow::Int64Builder b1(pool); CHECK_ARROW_ERROR(b1.AppendValues(vec)); @@ -543,10 +543,15 @@ int main(int argc, char** argv) { } std::shared_ptr a1; arrow::LargeStringBuilder b1(pool); - CHECK_ARROW_ERROR(b1.AppendValues({"a", "bb", "ccc", "dddd"})); - CHECK_ARROW_ERROR(b1.AppendNull()); - CHECK_ARROW_ERROR(b1.AppendValues({"eeeee"})); - CHECK_ARROW_ERROR(b1.AppendValues({s})); + + for (size_t i = 0; i < size / sizeof(int64_t); ++i) { + // sizeof(int64_t) elements + CHECK_ARROW_ERROR(b1.AppendValues({"a", "bb", "ccc", "dddd"})); + CHECK_ARROW_ERROR(b1.AppendNull()); + CHECK_ARROW_ERROR(b1.AppendValues({"eeeee"})); + CHECK_ARROW_ERROR(b1.AppendValues({s})); + CHECK_ARROW_ERROR(b1.AppendNull()); + } CHECK_ARROW_ERROR(b1.Finish(&a1)); column2[chunk_index] = a1; }