Skip to content

Commit 8a1b85b

Browse files
Version changed to 0.2.2
1 parent ec557f3 commit 8a1b85b

5 files changed

Lines changed: 13 additions & 4 deletions

File tree

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -175,7 +175,7 @@ For instance,
175175
```
176176
may print
177177
```
178-
0.2.1
178+
0.2.2
179179
```
180180

181181
#### 'search_by_timestamp' operation mode

packaging/debian/changelog

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
percona-binlog-server (0.2.2-1) unstable; urgency=low
2+
3+
* PS-11054 Cannot replicate because the source purged required binary logs.
4+
5+
-- Yura Sorokin <yura.sorokin@percona.com> Tue, 21 Apr 2026 19:09:19 +0200
6+
17
percona-binlog-server (0.2.1-1) unstable; urgency=low
28

39
* PS-10910 Bucket name is missing in search_* outputs.

packaging/debian/rules

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ export DEB_HOST_ARCH ?= $(shell dpkg-architecture -qDEB_HOST_ARCH)
99
export CODENAME := $(shell . /etc/os-release && echo $$VERSION_CODENAME)
1010

1111
# Versions
12-
export DEB_VERSION=0.2.1
12+
export DEB_VERSION=0.2.2
1313
export BOOST_VERSION=1.88.0
1414
export AWS_VERSION=1.11.570
1515

@@ -105,7 +105,7 @@ override_dh_auto_build:
105105
cd ..; \
106106
cmake . --preset $(BUILD_PRESET_RELEASE); \
107107
cmake --build ./percona-binlog-server-$(DEB_VERSION)-build-$(BUILD_PRESET_RELEASE)
108-
./percona-binlog-server-$(DEB_VERSION)-build-$(BUILD_PRESET_DEBUG)/binlog_server version; \
108+
./percona-binlog-server-$(DEB_VERSION)-build-$(BUILD_PRESET_RELEASE)/binlog_server version; \
109109

110110
override_dh_auto_install:
111111
install -d debian/percona-binlog-server/usr/bin

packaging/rpm/binlog-server.spec

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -134,6 +134,9 @@ install -D -m 0644 main_config.json %{buildroot}/%{_sysconfdir}/percona-binlog-
134134

135135

136136
%changelog
137+
* Tue Apr 21 2026 Yura Sorokin <yura.sorokin@percona.com> - 0.2.2-1
138+
- PS-11054 Cannot replicate because the source purged required binary logs.
139+
137140
* Fri Apr 10 2026 Yura Sorokin <yura.sorokin@percona.com> - 0.2.1-1
138141
- PS-10910 Bucket name is missing in search_* outputs.
139142
- PS-11002 Changing storage prefix fails.

src/app_version.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,6 @@
1818

1919
#include "util/semantic_version.hpp"
2020

21-
static constexpr util::semantic_version app_version{0U, 2U, 1U};
21+
static constexpr util::semantic_version app_version{0U, 2U, 2U};
2222

2323
#endif // APP_VERSION_HPP

0 commit comments

Comments
 (0)