Skip to content

Commit

Permalink
Bump version to 2.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Tradias committed Nov 6, 2022
1 parent cf7917f commit eac52c2
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 3 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ endif()

project(
asio-grpc
VERSION 2.2.0
VERSION 2.3.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/v2.2.0/cmake-format.yaml#L2-L14) to get proper formatting.
[cmake-format.yaml](https://github.com/Tradias/asio-grpc/blob/v2.3.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=2.2.0
sonar.projectVersion=2.3.0

# Path is relative to the sonar-project.properties file. Replace "\" by "/" on Windows.
sonar.sources=src
Expand Down
3 changes: 3 additions & 0 deletions src/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -104,12 +104,14 @@ if(ASIO_GRPC_BUILD_TESTS AND ASIO_GRPC_ENABLE_CHECK_HEADER_SYNTAX_TARGET)
"${CMAKE_CURRENT_SOURCE_DIR}/agrpc/detail/high_level_client_sender.hpp"
"${CMAKE_CURRENT_SOURCE_DIR}/agrpc/detail/initiate_sender_implementation.hpp"
"${CMAKE_CURRENT_SOURCE_DIR}/agrpc/detail/intrusive_list.hpp"
"${CMAKE_CURRENT_SOURCE_DIR}/agrpc/detail/intrusive_list_hook.hpp"
"${CMAKE_CURRENT_SOURCE_DIR}/agrpc/detail/intrusive_queue.hpp"
"${CMAKE_CURRENT_SOURCE_DIR}/agrpc/detail/intrusive_queue_hook.hpp"
"${CMAKE_CURRENT_SOURCE_DIR}/agrpc/detail/memory_resource.hpp"
"${CMAKE_CURRENT_SOURCE_DIR}/agrpc/detail/memory_resource_allocator.hpp"
"${CMAKE_CURRENT_SOURCE_DIR}/agrpc/detail/name.hpp"
"${CMAKE_CURRENT_SOURCE_DIR}/agrpc/detail/no_op_stop_callback.hpp"
"${CMAKE_CURRENT_SOURCE_DIR}/agrpc/detail/notify_on_state_change.hpp"
"${CMAKE_CURRENT_SOURCE_DIR}/agrpc/detail/notify_when_done.hpp"
"${CMAKE_CURRENT_SOURCE_DIR}/agrpc/detail/operation.hpp"
"${CMAKE_CURRENT_SOURCE_DIR}/agrpc/detail/query_grpc_context.hpp"
Expand Down Expand Up @@ -144,6 +146,7 @@ if(ASIO_GRPC_BUILD_TESTS AND ASIO_GRPC_ENABLE_CHECK_HEADER_SYNTAX_TARGET)
"${CMAKE_CURRENT_SOURCE_DIR}/agrpc/grpc_initiate.hpp"
"${CMAKE_CURRENT_SOURCE_DIR}/agrpc/grpc_stream.hpp"
"${CMAKE_CURRENT_SOURCE_DIR}/agrpc/high_level_client.hpp"
"${CMAKE_CURRENT_SOURCE_DIR}/agrpc/notify_on_state_change.hpp"
"${CMAKE_CURRENT_SOURCE_DIR}/agrpc/notify_when_done.hpp"
"${CMAKE_CURRENT_SOURCE_DIR}/agrpc/repeatedly_request.hpp"
"${CMAKE_CURRENT_SOURCE_DIR}/agrpc/repeatedly_request_context.hpp"
Expand Down

0 comments on commit eac52c2

Please sign in to comment.