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.1
0.2.2
```

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

* PS-11054 Cannot replicate because the source purged required binary logs.

-- Yura Sorokin <yura.sorokin@percona.com> 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.
Expand Down
4 changes: 2 additions & 2 deletions 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.1
export DEB_VERSION=0.2.2
export BOOST_VERSION=1.88.0
export AWS_VERSION=1.11.570

Expand Down Expand Up @@ -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
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
* 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.

* Fri Apr 10 2026 Yura Sorokin <yura.sorokin@percona.com> - 0.2.1-1
- PS-10910 Bucket name is missing in search_* outputs.
- PS-11002 Changing storage prefix fails.
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, 1U};
static constexpr util::semantic_version app_version{0U, 2U, 2U};

#endif // APP_VERSION_HPP
Loading