diff --git a/README.md b/README.md index cdd47f7..7aaeb75 100644 --- a/README.md +++ b/README.md @@ -175,7 +175,7 @@ For instance, ``` may print ``` -0.2.1 +0.2.2 ``` #### 'search_by_timestamp' operation mode diff --git a/packaging/debian/changelog b/packaging/debian/changelog index 778fbc2..97c5515 100644 --- a/packaging/debian/changelog +++ b/packaging/debian/changelog @@ -1,3 +1,9 @@ +percona-binlog-server (0.2.2-1) unstable; urgency=low + + * PS-11054 Cannot replicate because the source purged required binary logs. + + -- Yura Sorokin Tue, 21 Apr 2026 19:09:19 +0200 + percona-binlog-server (0.2.1-1) unstable; urgency=low * PS-10910 Bucket name is missing in search_* outputs. diff --git a/packaging/debian/rules b/packaging/debian/rules index 40cb0d2..2c9b0dc 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.2.1 +export DEB_VERSION=0.2.2 export BOOST_VERSION=1.88.0 export AWS_VERSION=1.11.570 @@ -105,7 +105,7 @@ override_dh_auto_build: cd ..; \ cmake . --preset $(BUILD_PRESET_RELEASE); \ cmake --build ./percona-binlog-server-$(DEB_VERSION)-build-$(BUILD_PRESET_RELEASE) - ./percona-binlog-server-$(DEB_VERSION)-build-$(BUILD_PRESET_DEBUG)/binlog_server version; \ + ./percona-binlog-server-$(DEB_VERSION)-build-$(BUILD_PRESET_RELEASE)/binlog_server version; \ override_dh_auto_install: install -d debian/percona-binlog-server/usr/bin diff --git a/packaging/rpm/binlog-server.spec b/packaging/rpm/binlog-server.spec index 63038bf..187ee6f 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 +* Tue Apr 21 2026 Yura Sorokin - 0.2.2-1 +- PS-11054 Cannot replicate because the source purged required binary logs. + * Fri Apr 10 2026 Yura Sorokin - 0.2.1-1 - PS-10910 Bucket name is missing in search_* outputs. - PS-11002 Changing storage prefix fails. diff --git a/src/app_version.hpp b/src/app_version.hpp index 0720cff..3f2da6f 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, 2U, 1U}; +static constexpr util::semantic_version app_version{0U, 2U, 2U}; #endif // APP_VERSION_HPP