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 CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@

cmake_minimum_required(VERSION 3.20)

project(BinlogServer VERSION 0.1 LANGUAGES CXX)
project(BinlogServer VERSION 0.3 LANGUAGES CXX)

# specify the C++ standard
add_library(binlog_server_compiler_flags INTERFACE)
Expand Down
8 changes: 5 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -57,8 +57,9 @@ export BUILD_PRESET=release_gcc14

```bash
git clone --recurse-submodules -b boost-1.90.0 --jobs=8 https://github.com/boostorg/boost.git
cd boost
pushd boost
git switch -c required_release
popd
```

###### Copying CMake presets for Boost Libraries
Expand Down Expand Up @@ -91,8 +92,9 @@ cmake --install ./boost-build-${BUILD_PRESET}

```bash
git clone --recurse-submodules -b 1.11.774 --jobs=8 https://github.com/aws/aws-sdk-cpp
cd aws-sdk-cpp
pushd aws-sdk-cpp
git switch -c required_release
popd
```

###### Copying CMake presets for AWS SDK CPP Libraries
Expand Down Expand Up @@ -175,7 +177,7 @@ For instance,
```
may print
```
0.2.3
0.3.0
```

#### 'search_by_timestamp' operation mode
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, 3U};
static constexpr util::semantic_version app_version{0U, 3U, 0U};

#endif // APP_VERSION_HPP
Loading