From a8eb4fe96bccf5b898d581b3118f7c9c08595d51 Mon Sep 17 00:00:00 2001 From: Yura Sorokin Date: Thu, 11 Jun 2026 16:57:22 +0200 Subject: [PATCH] Version changed to 0.3.1 --- README.md | 2 +- packaging/debian/changelog | 6 ++++++ packaging/debian/rules | 2 +- packaging/rpm/binlog-server.spec | 3 +++ src/app_version.hpp | 2 +- 5 files changed, 12 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 6ee4c5d..3b7cbaa 100644 --- a/README.md +++ b/README.md @@ -182,7 +182,7 @@ For instance, ``` may print ``` -0.3.0 +0.3.1 ``` #### 'list' operation mode diff --git a/packaging/debian/changelog b/packaging/debian/changelog index 86c00c2..481b93c 100644 --- a/packaging/debian/changelog +++ b/packaging/debian/changelog @@ -1,3 +1,9 @@ +percona-binlog-server (0.3.1-1) unstable; urgency=low + + * PBS-27 binlog_server list command fails with ERROR if executed while fetch/pull is in progress. + + -- Yura Sorokin Thu, 11 Jun 2026 16:46:21 +0200 + percona-binlog-server (0.3.0-1) unstable; urgency=low * PS-10625 Update boost libraries to 1.90.0. diff --git a/packaging/debian/rules b/packaging/debian/rules index 21195a3..55088c6 100755 --- a/packaging/debian/rules +++ b/packaging/debian/rules @@ -9,7 +9,7 @@ export DEB_HOST_ARCH ?= $(shell dpkg-architecture -qDEB_HOST_ARCH) export CODENAME := $(shell . /etc/os-release && echo $$VERSION_CODENAME) # Versions -export DEB_VERSION=0.3.0 +export DEB_VERSION=0.3.1 export BOOST_VERSION=1.90.0 export AWS_VERSION=1.11.774 diff --git a/packaging/rpm/binlog-server.spec b/packaging/rpm/binlog-server.spec index 188d971..08cd99e 100644 --- a/packaging/rpm/binlog-server.spec +++ b/packaging/rpm/binlog-server.spec @@ -134,6 +134,9 @@ install -D -m 0644 main_config.json %{buildroot}/%{_sysconfdir}/percona-binlog- %changelog +* Thu Jun 11 2026 Yura Sorokin - 0.3.1-1 +- PBS-27 binlog_server list command fails with ERROR if executed while fetch/pull is in progress. + * Thu Jun 04 2026 Yura Sorokin - 0.3.0-1 - PS-10625 Update boost libraries to 1.90.0. - PS-10934 Update AWS SDK C++ libraries to version 1.11.774. diff --git a/src/app_version.hpp b/src/app_version.hpp index c88339b..e54209b 100644 --- a/src/app_version.hpp +++ b/src/app_version.hpp @@ -18,6 +18,6 @@ #include "util/semantic_version.hpp" -static constexpr util::semantic_version app_version{0U, 3U, 0U}; +static constexpr util::semantic_version app_version{0U, 3U, 1U}; #endif // APP_VERSION_HPP