Skip to content

Commit

Permalink
Bump version to 3.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Tradias committed Apr 8, 2024
1 parent bf3fa29 commit 6cee405
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ endif()

project(
asio-grpc
VERSION 3.0.0
VERSION 3.1.0
DESCRIPTION "Asynchronous gRPC with Asio/unified executors"
HOMEPAGE_URL "https://github.com/Tradias/asio-grpc"
LANGUAGES CXX)
Expand Down
2 changes: 1 addition & 1 deletion cmake/AsioGrpcProtobufGenerator.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ In the same directory that called `find_package(asio-grpc)` the following CMake
It can be used to generate Protobuf/gRPC source files from `.proto` schemas.<br>
If you are using [cmake-format](https://github.com/cheshirekow/cmake_format) then you can copy the `asio_grpc_protobuf_generate` section from
[cmake-format.yaml](https://github.com/Tradias/asio-grpc/blob/v3.0.0/cmake-format.yaml#L2-L14) to get proper formatting.
[cmake-format.yaml](https://github.com/Tradias/asio-grpc/blob/v3.1.0/cmake-format.yaml#L2-L14) to get proper formatting.
```cmake
asio_grpc_protobuf_generate(PROTOS <proto_file1> [<proto_file2>...]
Expand Down
2 changes: 1 addition & 1 deletion sonar-project.properties
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ sonar.host.url=https://sonarcloud.io

# This is the name and version displayed in the SonarCloud UI.
sonar.projectName=asio-grpc
sonar.projectVersion=3.0.0
sonar.projectVersion=3.1.0

# Path is relative to the sonar-project.properties file. Replace "\" by "/" on Windows.
sonar.sources=src
Expand Down
4 changes: 2 additions & 2 deletions src/agrpc/server_rpc_ptr.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ class ServerRPCPtr
const ServerRPCT* operator->() const noexcept { return &server_rpc_->rpc_; }

/**
* @brief Checks whether this pointer owns a ServerRPC
* @brief Check whether this pointer owns a ServerRPC
*
* @since 3.1.0
*/
Expand All @@ -102,7 +102,7 @@ class ServerRPCPtr
decltype(auto) request() const noexcept { return (server_rpc_->request_); }

/**
* @brief Swap contents of two ServerRPCPtr
* @brief Swap the contents of two ServerRPCPtr
*
* @since 3.1.0
*/
Expand Down

0 comments on commit 6cee405

Please sign in to comment.