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 .github/workflows/cmake.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ env:
AWS_SDK_CPP_MINOR: 11
AWS_SDK_CPP_PATCH: 570
BOOST_MAJOR: 1
BOOST_MINOR: 88
BOOST_MINOR: 90
BOOST_PATCH: 0
MYSQL_DOWNLOADS_URL: https://dev.mysql.com/get/Downloads
MYSQL_80_VERSION: 8.0.44
Expand Down
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ if(WITH_ASAN)
target_link_options(binlog_server_compiler_flags INTERFACE "-fsanitize=address")
endif()

find_package(Boost 1.88.0 EXACT REQUIRED COMPONENTS url json)
find_package(Boost 1.90.0 EXACT REQUIRED COMPONENTS url json)

find_package(MySQL REQUIRED)

Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ Currently prebuilt binaries are not available.

- [CMake](https://cmake.org/) 3.20.0+
- [Clang](https://clang.llvm.org/) (`clang-15` .. `clang-20`) or [GCC](https://gcc.gnu.org/) (`gcc-12` .. `gcc-14`)
- [Boost libraries](https://www.boost.org/) 1.88.0 (git version, not the source tarball)
- [Boost libraries](https://www.boost.org/) 1.90.0 (git version, not the source tarball)
- [MySQL client library](https://dev.mysql.com/doc/c-api/8.0/en/) 8.0.x (`libmysqlclient`)
- [CURL library](https://curl.se/libcurl/) (`libcurl`) 8.6.0+
- [AWS SDK for C++](https://aws.amazon.com/sdk-for-cpp/) 1.11.570
Expand Down Expand Up @@ -56,7 +56,7 @@ export BUILD_PRESET=release_gcc14
###### Getting Boost Libraries source

```bash
git clone --recurse-submodules -b boost-1.88.0 --jobs=8 https://github.com/boostorg/boost.git
git clone --recurse-submodules -b boost-1.90.0 --jobs=8 https://github.com/boostorg/boost.git
cd boost
git switch -c required_release
```
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 CODENAME := $(shell . /etc/os-release && echo $$VERSION_CODENAME)

# Versions
export DEB_VERSION=0.1.0
export BOOST_VERSION=1.88.0
export BOOST_VERSION=1.90.0
export AWS_VERSION=1.11.570

# CMake presets
Expand Down
2 changes: 1 addition & 1 deletion packaging/rpm/binlog-server.spec
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
%global rpm_release @@RPM_RELEASE@@
%global BUILD_PRESET_DEBUG debug_gcc14
%global BUILD_PRESET_RELEASE release_gcc14
%global BOOST_VERSION 1.88.0
%global BOOST_VERSION 1.90.0
%global AWS_VERSION 1.11.570
%global release %{rpm_release}%{?dist}
%global optflags %(echo %{optflags} | sed 's/-specs=[^ ]*annobin[^ ]*//g')
Expand Down
Loading