Skip to content

Commit

Permalink
Bump up vineyard version to v0.16.1
Browse files Browse the repository at this point in the history
Signed-off-by: Tao He <[email protected]>
  • Loading branch information
sighingnow committed Jul 17, 2023
1 parent 93c65fd commit 39f463a
Show file tree
Hide file tree
Showing 8 changed files with 12 additions and 12 deletions.
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 16)
set(VINEYARD_PATCH_VERSION 0)
set(VINEYARD_PATCH_VERSION 1)
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,12 +24,12 @@ 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.16.0
version: 0.16.1

# 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.16.0
appVersion: 0.16.1

dependencies:
- name: cert-manager
Expand Down
3 changes: 1 addition & 2 deletions k8s/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,8 @@ COPY k8s/ k8s/
# Update the working directory
WORKDIR /workspace/k8s

RUN go mod download

# Build
RUN go mod download
RUN go build -a -o vineyardctl cmd/main.go && \
strip vineyardctl || true

Expand Down
5 changes: 3 additions & 2 deletions k8s/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -209,15 +209,16 @@ vendor:
# Build the docker image
.PHONY: docker-build
docker-build:
cd .. &&\
cd .. && \
if docker build --help | grep -q load; then \
docker build --load -f k8s/Dockerfile . -t $(IMG); \
else \
docker build -f k8s/Dockerfile . -t $(IMG); \
fi

docker-build-push-multi-arch:
docker buildx build . -t $(IMG) --platform linux/amd64,linux/arm64 --push
cd .. && \
docker buildx build -f k8s/Dockerfile . -t $(IMG) --platform linux/amd64,linux/arm64 --push

# Push the docker image
.PHONY: docker-push
Expand Down
2 changes: 1 addition & 1 deletion k8s/cmd/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ var cmdLong = util.LongDesc(`

var cmd = &cobra.Command{
Use: "vineyardctl [command]",
Version: "v0.16.0",
Version: "v0.16.1",
Short: "vineyardctl is the command-line tool for interact 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.16.0
version = 0.16.1

[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 16
#define VINEYARD_VERSION_PATCH 0
#define VINEYARD_VERSION_PATCH 1

#define VINEYARD_VERSION \
((VINEYARD_VERSION_MAJOR * 1000) + VINEYARD_VERSION_MINOR) * 1000 + \
VINEYARD_VERSION_PATCH
#define VINEYARD_VERSION_STRING "0.16.0"
#define VINEYARD_VERSION_STRING "0.16.1"

#endif // SRC_COMMON_UTIL_CONFIG_H_
2 changes: 1 addition & 1 deletion thirdparty/etcd-cpp-apiv3
Submodule etcd-cpp-apiv3 updated 88 files
+0 −15 .clang-format
+9 −42 .github/workflows/build-test.yml
+6 −18 CMakeLists.txt
+80 −132 README.md
+1 −4 etcd-cpp-api-config.in.cmake
+732 −762 etcd/Client.hpp
+121 −103 etcd/KeepAlive.hpp
+225 −235 etcd/Response.hpp
+811 −864 etcd/SyncClient.hpp
+100 −98 etcd/Value.hpp
+231 −193 etcd/Watcher.hpp
+67 −85 etcd/v3/Action.hpp
+27 −0 etcd/v3/AsyncCompareAndDeleteAction.hpp
+27 −0 etcd/v3/AsyncCompareAndSwapAction.hpp
+26 −0 etcd/v3/AsyncDeleteAction.hpp
+23 −0 etcd/v3/AsyncDeleteResponse.hpp
+80 −0 etcd/v3/AsyncElectionAction.hpp
+51 −0 etcd/v3/AsyncElectionResponse.hpp
+0 −435 etcd/v3/AsyncGRPC.hpp
+26 −0 etcd/v3/AsyncHeadAction.hpp
+22 −0 etcd/v3/AsyncHeadResponse.hpp
+89 −0 etcd/v3/AsyncLeaseAction.hpp
+55 −0 etcd/v3/AsyncLeaseResponse.hpp
+40 −0 etcd/v3/AsyncLockAction.hpp
+32 −0 etcd/v3/AsyncLockResponse.hpp
+26 −0 etcd/v3/AsyncPutAction.hpp
+23 −0 etcd/v3/AsyncPutResponse.hpp
+26 −0 etcd/v3/AsyncRangeAction.hpp
+22 −0 etcd/v3/AsyncRangeResponse.hpp
+28 −0 etcd/v3/AsyncSetAction.hpp
+29 −0 etcd/v3/AsyncTxnAction.hpp
+20 −0 etcd/v3/AsyncTxnResponse.hpp
+27 −0 etcd/v3/AsyncUpdateAction.hpp
+36 −0 etcd/v3/AsyncWatchAction.hpp
+25 −0 etcd/v3/AsyncWatchResponse.hpp
+13 −11 etcd/v3/KeyValue.hpp
+39 −202 etcd/v3/Transaction.hpp
+49 −52 etcd/v3/V3Response.hpp
+58 −58 etcd/v3/action_constants.hpp
+3 −0 src/CMakeLists.txt
+395 −299 src/Client.cpp
+93 −89 src/KeepAlive.cpp
+93 −37 src/Response.cpp
+431 −398 src/SyncClient.cpp
+58 −16 src/Value.cpp
+212 −176 src/Watcher.cpp
+26 −32 src/v3/Action.cpp
+59 −0 src/v3/AsyncCompareAndDeleteAction.cpp
+61 −0 src/v3/AsyncCompareAndSwapAction.cpp
+49 −0 src/v3/AsyncDeleteAction.cpp
+32 −0 src/v3/AsyncDeleteResponse.cpp
+214 −0 src/v3/AsyncElectionAction.cpp
+35 −0 src/v3/AsyncElectionResponse.cpp
+0 −1,340 src/v3/AsyncGRPC.cpp
+35 −0 src/v3/AsyncHeadAction.cpp
+11 −0 src/v3/AsyncHeadResponse.cpp
+264 −0 src/v3/AsyncLeaseAction.cpp
+34 −0 src/v3/AsyncLeaseResponse.cpp
+64 −0 src/v3/AsyncLockAction.cpp
+13 −0 src/v3/AsyncLockResponse.cpp
+36 −0 src/v3/AsyncPutAction.cpp
+13 −0 src/v3/AsyncPutResponse.cpp
+59 −0 src/v3/AsyncRangeAction.cpp
+29 −0 src/v3/AsyncRangeResponse.cpp
+51 −0 src/v3/AsyncSetAction.cpp
+38 −0 src/v3/AsyncTxnAction.cpp
+48 −0 src/v3/AsyncTxnResponse.cpp
+50 −0 src/v3/AsyncUpdateAction.cpp
+209 −0 src/v3/AsyncWatchAction.cpp
+46 −0 src/v3/AsyncWatchResponse.cpp
+12 −3 src/v3/KeyValue.cpp
+176 −335 src/v3/Transaction.cpp
+55 −33 src/v3/V3Response.cpp
+33 −34 src/v3/action_constants.cpp
+18 −21 tst/AuthTest.cpp
+6 −11 tst/CampaignTest.cpp
+12 −65 tst/ElectionTest.cpp
+40 −55 tst/EtcdSyncTest.cpp
+118 −116 tst/EtcdTest.cpp
+12 −12 tst/ForkTest.cpp
+2 −29 tst/KeepAliveTest.cpp
+43 −52 tst/LockTest.cpp
+24 −24 tst/MemLeakTest.cpp
+10 −10 tst/MemLeakWatcherTest.cpp
+27 −28 tst/RewatchTest.cpp
+18 −21 tst/SecurityChannelTest.cpp
+13 −53 tst/TransactionTest.cpp
+49 −49 tst/WatcherTest.cpp

0 comments on commit 39f463a

Please sign in to comment.