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.0
0.2.1
```

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

* PS-10910 Bucket name is missing in search_* outputs.
* PS-11002 Changing storage prefix fails.
* PS-10911 Unexpected binlog position in artificial rotate event.

-- Yura Sorokin <yura.sorokin@percona.com> Fri, 10 Apr 2026 16:13:14 +0200

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

* Packaging for 0.2.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 @@ -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.0
export DEB_VERSION=0.2.1
export BOOST_VERSION=1.88.0
export AWS_VERSION=1.11.570

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


%changelog
* 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.
- PS-10911 Unexpected binlog position in artificial rotate event.

* Mon Mar 16 2026 Yura Sorokin <yura.sorokin@percona.com> - 0.2.0-1
- Percona Binlog Server with GTID replication support.

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

#endif // APP_VERSION_HPP
Loading