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.3 LANGUAGES CXX)
project(BinlogServer VERSION 0.4 LANGUAGES CXX)

# specify the C++ standard
add_library(binlog_server_compiler_flags INTERFACE)
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -182,7 +182,7 @@ For instance,
```
may print
```
0.3.1
0.4.0
```

#### 'list' 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, 3U, 1U};
static constexpr util::semantic_version app_version{0U, 4U, 0U};

#endif // APP_VERSION_HPP
Loading