Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 200da3d

Browse files
authoredJun 13, 2025··
Update development version to 5.5.0. (#1310)
Updated the development version to 5.5.0.
1 parent 37aae63 commit 200da3d

File tree

4 files changed

+15
-11
lines changed

4 files changed

+15
-11
lines changed
 

‎CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
cmake_minimum_required(VERSION 3.10)
1818

1919
project(hazelcast-cpp-client
20-
VERSION 5.4.0
20+
VERSION 5.5.0
2121
DESCRIPTION "Hazelcast C++ Client"
2222
LANGUAGES CXX)
2323

‎Reference_Manual.md

Lines changed: 12 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
<!-- THIS FILE IS AUTO GENERATED FILE.
2-
MODIFY Reference_Manual.md.in TO MAKE CHANGES. -->
2+
MODIFY Reference_Manual.md.in TO MAKE CHANGES.
3+
If you make any changes in Reference_Manual.md.in file,
4+
you need to build the project which will re-generate the Reference_Manual.md file
5+
and commit this generated reference manual in the github repository.
6+
-->
37

48
# Hazelcast C++ Client Library
59
<!--ts-->
@@ -223,7 +227,7 @@ Please see [example instructions](https://docs.conan.io/en/latest/getting_starte
223227
- You need to put the following lines to your `conanfile.txt`:
224228
```
225229
[requires]
226-
hazelcast-cpp-client/5.4.0
230+
hazelcast-cpp-client/5.5.0
227231
228232
[generators]
229233
cmake
@@ -253,22 +257,22 @@ Follow the instructions for your platform:
253257
* [Windows](#1134-windows-users)
254258

255259
#### 1.1.3.3. Linux and MacOS Users
256-
Here is how you download and extract version 5.4.0 using the **curl** command:
260+
Here is how you download and extract version 5.5.0 using the **curl** command:
257261
```sh
258-
curl -Lo hazelcast-cpp-client-5.4.0.tar.gz https://github.com/hazelcast/hazelcast-cpp-client/archive/v5.4.0.tar.gz
259-
tar xzf hazelcast-cpp-client-5.4.0.tar.gz
262+
curl -Lo hazelcast-cpp-client-5.5.0.tar.gz https://github.com/hazelcast/hazelcast-cpp-client/archive/v5.5.0.tar.gz
263+
tar xzf hazelcast-cpp-client-5.5.0.tar.gz
260264
```
261265

262266
Alternatively, you may clone the repository and checkout a specific version:
263267
```sh
264268
git clone https://github.com/hazelcast/hazelcast-cpp-client.git
265269
cd hazelcast-cpp-client
266-
git checkout v5.4.0
270+
git checkout v5.5.0
267271
```
268272

269273
Once you are in the source directory of the Hazelcast C++ client library, create and change into a new directory:
270274
```sh
271-
cd hazelcast-cpp-client-5.4.0
275+
cd hazelcast-cpp-client-5.5.0
272276
mkdir build
273277
cd build
274278
```
@@ -295,7 +299,7 @@ Download and extract the release archive from the
295299

296300
Open a `cmd` window and change into the folder where you extracted the contents of the release archive. Then create and change into a new directory:
297301
```bat
298-
cd hazelcast-cpp-client-5.4.0
302+
cd hazelcast-cpp-client-5.5.0
299303
mkdir build
300304
cd build
301305
```

‎Reference_Manual.md.in

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3861,6 +3861,6 @@ Besides your development contributions as explained in the [Development and Test
38613861

38623862
# 12. Copyright
38633863

3864-
Copyright (c) 2008-2023, Hazelcast, Inc. All Rights Reserved.
3864+
Copyright (c) 2008-2025, Hazelcast, Inc. All Rights Reserved.
38653865

38663866
Visit [www.hazelcast.com](http://www.hazelcast.com) for more information.

‎examples/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
cmake_minimum_required (VERSION 3.10)
1818

1919
project (hazelcast-cpp-client-examples
20-
VERSION 5.4.0
20+
VERSION 5.5.0
2121
DESCRIPTION "Hazelcast C++ Client Code Examples"
2222
LANGUAGES CXX)
2323

0 commit comments

Comments
 (0)
Please sign in to comment.