Skip to content

Commit 4147869

Browse files
Version: release v1.1.0 version (#98)
1 parent 5361895 commit 4147869

File tree

3 files changed

+30
-3
lines changed

3 files changed

+30
-3
lines changed

CHANGELOG.md

+28-1
Original file line numberDiff line numberDiff line change
@@ -1 +1,28 @@
1-
# Change Log
1+
# Change Log
2+
3+
## [1.1.0](https://github.com/trpc-group/trpc-cpp/releases/tag/v1.1.0)(2023-12-28)
4+
5+
### Features And Improvements
6+
- **fiber:** add adaptive primitives for both fiber and pthread context (#94) @hzlushiliang
7+
- **fiber:** optimize fiber primitives to reduce fiber context switch (#87) @helloopenworld
8+
- **redis:** support redis_lpop_count command (#69) @yujun411522
9+
- **util:** use RoundUpPowerOf2() in LockFreeQueue Init() (#93) @ypingcn
10+
11+
### Bug Fixes
12+
- **transport:** fix fd double close when accept over max_conn_num limit (#73) @yujun411522
13+
- **https:** fix protocol check error of bad magic number due to ssl write dirty data to reused socket fd (#96) @liucf3995
14+
- **future:** fix prossible timeout in low qps situation in future transport when using connection reuse mode (#85) @chhy2009
15+
- **stream:** fix crash when peer send reset stream frame but has no error code (#82) @weimch
16+
- **plugin:** fix the issue of incomplete initialization of plugins with the same name but different types (#92) @chhy2009
17+
- **config:** fix coredump of trpc::config::GetInt64() with overflowed int32 (#89) @liucf3995
18+
- **logging:** fix TRPC_STREAM do not have context (#84) @raychen911
19+
- **logging:** fix ReadTsc to avoid infinite loop in kNanosecondsPerUnit initialization (#97) @hzlushiliang
20+
- **util:** fix NoncontiguousBuffer.Find() fails to find substring in some cases (#90) @NewbieOrange
21+
22+
### Other Changes
23+
- **doc:** Add/improve documents @raychen911 @weimch
24+
25+
26+
## [1.0.0](https://github.com/trpc-group/trpc-cpp/releases/tag/v1.0.0)(2023-10-27)
27+
28+
tRPC-Cpp first version

trpc/common/trpc_version.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
#pragma once
1515

1616
#define TRPC_CPP_MAJOR_VERSION 1
17-
#define TRPC_CPP_MINOR_VERSION 0
17+
#define TRPC_CPP_MINOR_VERSION 1
1818
#define TRPC_CPP_PATCH_VERSION 0
1919

2020
// (e.g. "-alpha", "-alpha.1", "-beta", "-rc", "-rc.1")

trpc/common/trpc_version_test.cc

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ class TestTrpcCppVersion : public ::testing::Test {
2727
};
2828

2929
TEST_F(TestTrpcCppVersion, CheckTrpcCppVersion) {
30-
trpc_cpp_version_ = "1.0.0";
30+
trpc_cpp_version_ = "1.1.0";
3131

3232
std::cout << "TRPC_Cpp_Version:" << TRPC_Cpp_Version() << std::endl;
3333

0 commit comments

Comments
 (0)