Skip to content

Commit

Permalink
Bump up vineyard version to v0.13.3
Browse files Browse the repository at this point in the history
Signed-off-by: Tao He <[email protected]>
  • Loading branch information
sighingnow committed Mar 13, 2023
1 parent bcf9fa4 commit ed23543
Show file tree
Hide file tree
Showing 10 changed files with 19 additions and 23 deletions.
3 changes: 0 additions & 3 deletions .github/workflows/build-archlinux-latest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,6 @@
name: Compatibility Build on Arch Linux Latest

on:
push:
tags:
- 'v*'
workflow_dispatch:

concurrency:
Expand Down
3 changes: 0 additions & 3 deletions .github/workflows/build-centos-latest.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,6 @@
name: Compatibility Build on CentOS Latest

on:
push:
tags:
- 'v*'
workflow_dispatch:

concurrency:
Expand Down
3 changes: 0 additions & 3 deletions .github/workflows/build-compatibility.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,6 @@
name: Compatibility Build

on:
push:
tags:
- 'v*'
workflow_dispatch:

concurrency:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build-test-graph.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-20.04]
malloc: [mimalloc]
malloc: [dlmalloc]
metadata: [etcd]
env:
RUNNER_ARGS: "--meta=${{ matrix.metadata }}"
Expand Down
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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}'.")
Expand Down
4 changes: 2 additions & 2 deletions charts/vineyard-operator/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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

2 changes: 1 addition & 1 deletion k8s/cmd/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -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,
}
Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[metadata]
version = 0.13.2
version = 0.13.3

[pycodestyle]
max_line_length = 88
Expand Down
4 changes: 2 additions & 2 deletions src/common/util/config.h
Original file line number Diff line number Diff line change
Expand Up @@ -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_
17 changes: 11 additions & 6 deletions test/arrow_data_structure_test.cc
Original file line number Diff line number Diff line change
Expand Up @@ -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<int64_t> vec(size / sizeof(int64_t), 0xff);
std::vector<int64_t> vec(size, 0xff);
std::shared_ptr<arrow::Int64Array> a1;
arrow::Int64Builder b1(pool);
CHECK_ARROW_ERROR(b1.AppendValues(vec));
Expand All @@ -543,10 +543,15 @@ int main(int argc, char** argv) {
}
std::shared_ptr<arrow::LargeStringArray> 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;
}
Expand Down

0 comments on commit ed23543

Please sign in to comment.