From 029251e8159ff3e03df54c3c6ad4e357b67fbe25 Mon Sep 17 00:00:00 2001 From: holmes1412 Date: Thu, 14 Mar 2024 22:45:17 +0800 Subject: [PATCH] Update version 0.10.0 -> 0.10.1 --- CMakeLists.txt | 2 +- src/generator/compiler.cc | 2 +- tools/CMakeLists.txt | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 6c1aafcd..9f3b06dd 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -3,7 +3,7 @@ set(CMAKE_BUILD_TYPE RelWithDebInfo CACHE STRING "build type") set(CMAKE_SKIP_RPATH TRUE) project(srpc - VERSION 0.10.1 + VERSION 0.10.2 LANGUAGES C CXX) ###Options diff --git a/src/generator/compiler.cc b/src/generator/compiler.cc index 99833958..aaeed5e4 100644 --- a/src/generator/compiler.cc +++ b/src/generator/compiler.cc @@ -29,7 +29,7 @@ #include "generator.h" -const char *SRPC_VERSION = "0.10.1"; +const char *SRPC_VERSION = "0.10.2"; /* LQ - prototype to determine if the file type is thrift */ enum diff --git a/tools/CMakeLists.txt b/tools/CMakeLists.txt index f866a7f1..2ad7ef2f 100644 --- a/tools/CMakeLists.txt +++ b/tools/CMakeLists.txt @@ -1,7 +1,7 @@ cmake_minimum_required(VERSION 3.6) project(srpc-ctl - VERSION 0.10.1 + VERSION 0.10.2 LANGUAGES C CXX )