Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/cmake.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -175,7 +175,7 @@ For instance,
```
may print
```
0.1.0
0.2.0
```

#### 'search_by_timestamp' operation mode
Expand Down
6 changes: 6 additions & 0 deletions packaging/debian/changelog
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
percona-binlog-server (0.2.0-1) unstable; urgency=low

* Packaging for 0.2.0-1

-- Yura Sorokin <yura.sorokin@percona.com> Mon, 16 Mar 2026 15:33:00 +0200

percona-binlog-server (0.1.0-1) unstable; urgency=low

* Packaging for 0.1.0-1
Expand Down
2 changes: 1 addition & 1 deletion packaging/debian/rules
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
7 changes: 5 additions & 2 deletions packaging/rpm/binlog-server.spec
Original file line number Diff line number Diff line change
Expand Up @@ -134,8 +134,11 @@ install -D -m 0644 main_config.json %{buildroot}/%{_sysconfdir}/percona-binlog-


%changelog
* Fri Jan 16 2026 Vadim Yalovets <vadim.yalovets@percona.com> - 1.0.0-1
- PKG-1208 Prepare packages for Percona Binlog Server
* Mon Mar 16 2026 Yura Sorokin <yura.sorokin@percona.com> - 0.2.0-1
- Percona Binlog Server with GTID replication support.

* Fri Jan 16 2026 Vadim Yalovets <vadim.yalovets@percona.com> - 0.1.0-2
- PKG-1208 Prepare packages for Percona Binlog Server.

* Mon Aug 26 2024 Surabhi Bhat <surabhi.bhat@percona.com> - 0.1.0-1
- Initial package with separate builds for Debug and RelWithDebInfo versions.
4 changes: 3 additions & 1 deletion src/app.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1074,7 +1074,9 @@ int main(int argc, char *argv[]) {
std::cerr << "usage: " << executable_name
<< " (fetch|pull)) <json_config_file>\n"
<< " " << executable_name
<< " search_by_timestamp <json_config_file> <iso_utc_timestamp>\n"
<< " search_by_timestamp <json_config_file> <timestamp>\n"
<< " " << executable_name
<< " search_by_gtid_set <json_config_file> <gtid_set>\n"
<< " " << executable_name << " version\n";
return EXIT_FAILURE;
}
Expand Down
2 changes: 1 addition & 1 deletion src/app_version.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -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
Loading