Skip to content

Commit 10d9f52

Browse files
authored
Bump version to v2.1.1 (#41)
1 parent cd28058 commit 10d9f52

File tree

5 files changed

+13
-6
lines changed

5 files changed

+13
-6
lines changed

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,13 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## [2.1.1] - 2025-03-24
9+
10+
### Changed
11+
12+
- Replace direct framing with MessageFramer class
13+
- Add comprehensive split message tests
14+
815
## [2.1.0] - 2025-03-16
916

1017
### Changed

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
cmake_minimum_required(VERSION 3.19)
2-
project(jsonrpc VERSION 2.1.0 LANGUAGES CXX)
2+
project(jsonrpc VERSION 2.1.1 LANGUAGES CXX)
33

44
# Set C++ standard
55
set(CMAKE_CXX_STANDARD 20)

MODULE.bazel

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ MODULE.bazel file for the jsonrpc module
44

55
module(
66
name = "jsonrpc",
7-
version = "2.1.0",
7+
version = "2.1.1",
88
compatibility_level = 1,
99
)
1010

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ bazel_dep(name = "jsonrpc", version = "0.0.0")
3737
git_override(
3838
module_name = "jsonrpc",
3939
remote = "https://github.com/hankhsu1996/jsonrpc-cpp-lib.git",
40-
tag = "v2.1.0"
40+
tag = "v2.1.1"
4141
)
4242
```
4343

@@ -56,7 +56,7 @@ include(FetchContent)
5656
FetchContent_Declare(
5757
jsonrpc
5858
GIT_REPOSITORY https://github.com/hankhsu1996/jsonrpc-cpp-lib.git
59-
GIT_TAG v2.1.0
59+
GIT_TAG v2.1.1
6060
)
6161
FetchContent_MakeAvailable(jsonrpc)
6262
@@ -102,7 +102,7 @@ For projects using Conan for dependency management, create a `conanfile.txt` in
102102

103103
```ini
104104
[requires]
105-
jsonrpc/2.1.0
105+
jsonrpc/2.1.1
106106

107107
[generators]
108108
CMakeDeps

conanfile.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
class JsonRpcRecipe(ConanFile):
66
""" Conan recipe for jsonrpc """
77
name = "jsonrpc"
8-
version = "2.1.0"
8+
version = "2.1.1"
99
license = "MIT"
1010
author = "Shou-Li Hsu <hank850503@gmail.com>"
1111
url = "https://github.com/hankhsu1996/jsonrpc-cpp-lib"

0 commit comments

Comments
 (0)