Skip to content

Commit

Permalink
Version: release v1.1.0 version (#98)
Browse files Browse the repository at this point in the history
  • Loading branch information
helloopenworld authored Dec 28, 2023
1 parent 5361895 commit 4147869
Show file tree
Hide file tree
Showing 3 changed files with 30 additions and 3 deletions.
29 changes: 28 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1 +1,28 @@
# Change Log
# Change Log

## [1.1.0](https://github.com/trpc-group/trpc-cpp/releases/tag/v1.1.0)(2023-12-28)

### Features And Improvements
- **fiber:** add adaptive primitives for both fiber and pthread context (#94) @hzlushiliang
- **fiber:** optimize fiber primitives to reduce fiber context switch (#87) @helloopenworld
- **redis:** support redis_lpop_count command (#69) @yujun411522
- **util:** use RoundUpPowerOf2() in LockFreeQueue Init() (#93) @ypingcn

### Bug Fixes
- **transport:** fix fd double close when accept over max_conn_num limit (#73) @yujun411522
- **https:** fix protocol check error of bad magic number due to ssl write dirty data to reused socket fd (#96) @liucf3995
- **future:** fix prossible timeout in low qps situation in future transport when using connection reuse mode (#85) @chhy2009
- **stream:** fix crash when peer send reset stream frame but has no error code (#82) @weimch
- **plugin:** fix the issue of incomplete initialization of plugins with the same name but different types (#92) @chhy2009
- **config:** fix coredump of trpc::config::GetInt64() with overflowed int32 (#89) @liucf3995
- **logging:** fix TRPC_STREAM do not have context (#84) @raychen911
- **logging:** fix ReadTsc to avoid infinite loop in kNanosecondsPerUnit initialization (#97) @hzlushiliang
- **util:** fix NoncontiguousBuffer.Find() fails to find substring in some cases (#90) @NewbieOrange

### Other Changes
- **doc:** Add/improve documents @raychen911 @weimch


## [1.0.0](https://github.com/trpc-group/trpc-cpp/releases/tag/v1.0.0)(2023-10-27)

tRPC-Cpp first version
2 changes: 1 addition & 1 deletion trpc/common/trpc_version.h
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
#pragma once

#define TRPC_CPP_MAJOR_VERSION 1
#define TRPC_CPP_MINOR_VERSION 0
#define TRPC_CPP_MINOR_VERSION 1
#define TRPC_CPP_PATCH_VERSION 0

// (e.g. "-alpha", "-alpha.1", "-beta", "-rc", "-rc.1")
Expand Down
2 changes: 1 addition & 1 deletion trpc/common/trpc_version_test.cc
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ class TestTrpcCppVersion : public ::testing::Test {
};

TEST_F(TestTrpcCppVersion, CheckTrpcCppVersion) {
trpc_cpp_version_ = "1.0.0";
trpc_cpp_version_ = "1.1.0";

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

Expand Down

0 comments on commit 4147869

Please sign in to comment.