Skip to content

Commit 279fec7

Browse files
authored
version update 4.1.0 -> 4.1.1 (#878)
1 parent 2c003be commit 279fec7

File tree

4 files changed

+10
-10
lines changed

4 files changed

+10
-10
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 4.1.0
20+
VERSION 4.1.1
2121
DESCRIPTION "Hazelcast C++ Client"
2222
LANGUAGES CXX)
2323

Reference_Manual.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -175,7 +175,7 @@ Please see [example instructions](https://docs.conan.io/en/latest/getting_starte
175175
- You need to put the following lines to your `conanfile.txt`:
176176
```
177177
[requires]
178-
hazelcast-cpp-client/4.1.0
178+
hazelcast-cpp-client/4.1.1
179179
180180
[generators]
181181
cmake
@@ -231,22 +231,22 @@ Follow the instructions for your platform:
231231
* [Windows](#1133-windows-users)
232232

233233
#### 1.1.3.3. Linux and MacOS Users
234-
Here is how you download and extract version 4.1.0 using the **curl** command:
234+
Here is how you download and extract version 4.1.1 using the **curl** command:
235235
```sh
236-
curl -Lo hazelcast-cpp-client-4.1.0.tar.gz https://github.com/hazelcast/hazelcast-cpp-client/archive/v4.1.0.tar.gz
237-
tar xzf hazelcast-cpp-client-4.1.0.tar.gz
236+
curl -Lo hazelcast-cpp-client-4.1.1.tar.gz https://github.com/hazelcast/hazelcast-cpp-client/archive/v4.1.1.tar.gz
237+
tar xzf hazelcast-cpp-client-4.1.1.tar.gz
238238
```
239239

240240
Alternatively, you may clone the repository and checkout a specific version:
241241
```sh
242242
git clone https://github.com/hazelcast/hazelcast-cpp-client.git
243243
cd hazelcast-cpp-client
244-
git checkout v4.1.0
244+
git checkout v4.1.1
245245
```
246246

247247
Once you are in the source directory of the Hazelcast C++ client library, create and change into a new directory:
248248
```sh
249-
cd hazelcast-cpp-client-4.1.0
249+
cd hazelcast-cpp-client-4.1.1
250250
mkdir build
251251
cd build
252252
```
@@ -270,7 +270,7 @@ Download and extract the release archive from the
270270

271271
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:
272272
```bat
273-
cd hazelcast-cpp-client-4.1.0
273+
cd hazelcast-cpp-client-4.1.1
274274
mkdir build
275275
cd build
276276
```

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 4.1.0
20+
VERSION 4.1.1
2121
DESCRIPTION "Hazelcast C++ Client Code Examples"
2222
LANGUAGES CXX)
2323

hazelcast/test/benchmark/CMakeLists.txt

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

1818
project(hazelcast-cpp-client-benchmark
19-
VERSION 4.1.0
19+
VERSION 4.1.1
2020
DESCRIPTION "Hazelcast C++ Client Benchmark Project"
2121
LANGUAGES CXX)
2222

0 commit comments

Comments
 (0)