diff --git a/.github/workflows/cmake.yml b/.github/workflows/cmake.yml index b489869..df499fa 100644 --- a/.github/workflows/cmake.yml +++ b/.github/workflows/cmake.yml @@ -2,9 +2,9 @@ name: CMake on: push: - branches: [ "main" ] + branches: [ "0.2" ] pull_request: - branches: [ "main" ] + branches: [ "0.2" ] env: AWS_SDK_CPP_MAJOR: 1 diff --git a/README.md b/README.md index 2f2594f..6babdb3 100644 --- a/README.md +++ b/README.md @@ -175,7 +175,7 @@ For instance, ``` may print ``` -0.1.0 +0.2.0 ``` #### 'search_by_timestamp' operation mode diff --git a/packaging/debian/changelog b/packaging/debian/changelog index b193069..94d30b4 100644 --- a/packaging/debian/changelog +++ b/packaging/debian/changelog @@ -1,3 +1,9 @@ +percona-binlog-server (0.2.0-1) unstable; urgency=low + + * Packaging for 0.2.0-1 + + -- Yura Sorokin Mon, 16 Mar 2026 15:33:00 +0200 + percona-binlog-server (0.1.0-1) unstable; urgency=low * Packaging for 0.1.0-1 diff --git a/packaging/debian/rules b/packaging/debian/rules index 4b3a430..0e3e864 100755 --- a/packaging/debian/rules +++ b/packaging/debian/rules @@ -8,7 +8,7 @@ export DISTRO := $(shell dpkg-vendor --query Vendor) export CODENAME := $(shell . /etc/os-release && echo $$VERSION_CODENAME) # Versions -export DEB_VERSION=0.1.0 +export DEB_VERSION=0.2.0 export BOOST_VERSION=1.88.0 export AWS_VERSION=1.11.570 diff --git a/packaging/rpm/binlog-server.spec b/packaging/rpm/binlog-server.spec index d8e73cf..f785927 100644 --- a/packaging/rpm/binlog-server.spec +++ b/packaging/rpm/binlog-server.spec @@ -134,8 +134,11 @@ install -D -m 0644 main_config.json %{buildroot}/%{_sysconfdir}/percona-binlog- %changelog -* Fri Jan 16 2026 Vadim Yalovets - 1.0.0-1 -- PKG-1208 Prepare packages for Percona Binlog Server +* Mon Mar 16 2026 Yura Sorokin - 0.2.0-1 +- Percona Binlog Server with GTID replication support. + +* Fri Jan 16 2026 Vadim Yalovets - 0.1.0-2 +- PKG-1208 Prepare packages for Percona Binlog Server. * Mon Aug 26 2024 Surabhi Bhat - 0.1.0-1 - Initial package with separate builds for Debug and RelWithDebInfo versions. diff --git a/src/app.cpp b/src/app.cpp index 7a611c4..933cb57 100644 --- a/src/app.cpp +++ b/src/app.cpp @@ -1074,7 +1074,9 @@ int main(int argc, char *argv[]) { std::cerr << "usage: " << executable_name << " (fetch|pull)) \n" << " " << executable_name - << " search_by_timestamp \n" + << " search_by_timestamp \n" + << " " << executable_name + << " search_by_gtid_set \n" << " " << executable_name << " version\n"; return EXIT_FAILURE; } diff --git a/src/app_version.hpp b/src/app_version.hpp index 4ce2568..9ad7a33 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, 1U, 0U}; +static constexpr util::semantic_version app_version{0U, 2U, 0U}; #endif // APP_VERSION_HPP