From 184f09f831989170e72cb0b881c918b36005e7a5 Mon Sep 17 00:00:00 2001 From: Jove Zhong Date: Sun, 21 Jan 2024 12:34:45 -0800 Subject: [PATCH] bump version to 1.4.0 (#512) --- cmake/autogenerated_versions.txt | 10 +++++----- debian/changelog | 2 +- docker/client/Dockerfile | 2 +- docker/server/Dockerfile | 2 +- docker/test/Dockerfile | 2 +- 5 files changed, 9 insertions(+), 9 deletions(-) diff --git a/cmake/autogenerated_versions.txt b/cmake/autogenerated_versions.txt index 579869ebf24..0fa99beb086 100644 --- a/cmake/autogenerated_versions.txt +++ b/cmake/autogenerated_versions.txt @@ -2,11 +2,11 @@ # NOTE: has nothing common with DBMS_TCP_PROTOCOL_VERSION, # only DBMS_TCP_PROTOCOL_VERSION should be incremented on protocol changes. -SET(VERSION_REVISION 2) +SET(VERSION_REVISION 1) SET(VERSION_MAJOR 1) -SET(VERSION_MINOR 3) -SET(VERSION_PATCH 32) +SET(VERSION_MINOR 4) +SET(VERSION_PATCH 0) SET(VERSION_GITHASH e9799052acaaeb043971cb353f81e0e4a8bf90d3) -SET(VERSION_DESCRIBE v1.3.32) -SET(VERSION_STRING 1.3.32) +SET(VERSION_DESCRIBE v1.4.0) +SET(VERSION_STRING 1.4.0) # end of autochange diff --git a/debian/changelog b/debian/changelog index 3c68d9d8bce..c0510b591bd 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,4 +1,4 @@ -proton (1.3.32) unstable; urgency=low +proton (1.4.0) unstable; urgency=low * Modified source code diff --git a/docker/client/Dockerfile b/docker/client/Dockerfile index 723649d7c29..00084943242 100644 --- a/docker/client/Dockerfile +++ b/docker/client/Dockerfile @@ -5,7 +5,7 @@ ARG apt_archive="http://archive.ubuntu.com" RUN sed -i "s|http://archive.ubuntu.com|$apt_archive|g" /etc/apt/sources.list ARG repository="deb https://repo.clickhouse.com/deb/stable/ main/" -ARG version=1.3.32 +ARG version=1.4.0 RUN apt-get update \ diff --git a/docker/server/Dockerfile b/docker/server/Dockerfile index 5ad4a664f6b..0436027f241 100644 --- a/docker/server/Dockerfile +++ b/docker/server/Dockerfile @@ -3,7 +3,7 @@ FROM ubuntu:20.04 # FIXME, XXX, timeplus deb repo # ARG repository="deb https://repo.timeplus/deb/stable/ main/" ARG repository="" -ARG version=1.3.32 +ARG version=1.4.0 ARG gosu_ver=1.10 # set non-empty deb_location_url url to create a docker image diff --git a/docker/test/Dockerfile b/docker/test/Dockerfile index 37f78e151f1..5024f57e15e 100644 --- a/docker/test/Dockerfile +++ b/docker/test/Dockerfile @@ -1,7 +1,7 @@ FROM ubuntu:18.04 ARG repository="deb https://repo.clickhouse.com/deb/stable/ main/" -ARG version=1.3.32 +ARG version=1.4.0 RUN apt-get update && \ apt-get install -y apt-transport-https dirmngr && \