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
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.2.2
0.2.3
```

#### '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.3-1) unstable; urgency=low

* PS-11033 Crash when S3 bucket accumulates large number of objects; recovery requires manual intervention.

-- Yura Sorokin <yura.sorokin@percona.com> Fri, 24 Apr 2026 04:29:21 +0200

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

* PS-11054 Cannot replicate because the source purged required binary logs.
Expand Down
2 changes: 1 addition & 1 deletion packaging/debian/rules
Original file line number Diff line number Diff line change
Expand Up @@ -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.2
export DEB_VERSION=0.2.3
export BOOST_VERSION=1.88.0
export AWS_VERSION=1.11.570

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


%changelog
* Fri Apr 24 2026 Yura Sorokin <yura.sorokin@percona.com> - 0.2.3-1
- PS-11033 Crash when S3 bucket accumulates large number of objects; recovery requires manual intervention.

* Tue Apr 21 2026 Yura Sorokin <yura.sorokin@percona.com> - 0.2.2-1
- PS-11054 Cannot replicate because the source purged required binary logs.

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, 2U, 2U};
static constexpr util::semantic_version app_version{0U, 2U, 3U};

#endif // APP_VERSION_HPP
Loading