Skip to content

Commit ee7b2cb

Browse files
committedJan 18, 2025
v0.7
1 parent bf9acf7 commit ee7b2cb

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed
 

‎CMakeLists.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
cmake_minimum_required(VERSION 3.22)
2-
project(luminousminer VERSION 0.6)
2+
project(luminousminer VERSION 0.7)
33

44
enable_language(C)
55
enable_language(CXX)

‎setup/config.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
# Global variables
2-
VERSION=0.6
2+
VERSION=0.7
33
PROJECT=luminousminer
44
EXE=miner

‎sources/common/app.hpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,5 +6,5 @@
66
namespace common
77
{
88
constexpr uint8_t VERSION_MAJOR{ 0 };
9-
constexpr uint8_t VERSION_MINOR{ 6 };
9+
constexpr uint8_t VERSION_MINOR{ 7 };
1010
}

‎sources/network/socks5.hpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -376,7 +376,7 @@ namespace socks5 {
376376
std::bind(Binder{std::move(self)}, ON_RESPONSE_TAIL{}, _1, _2));
377377
}
378378

379-
void operator()(Self& self, ON_RESPONSE_TAIL, error_code ec, [[maybe_unused]] size_t xfer) {
379+
void operator()( [[maybe_unused]] Self& self, ON_RESPONSE_TAIL, error_code ec, [[maybe_unused]] size_t xfer) {
380380
_handler(_core.get_result(ec));
381381
}
382382
};

0 commit comments

Comments
 (0)
Please sign in to comment.