Skip to content

Commit

Permalink
version update 4.1.0 -> 4.1.1 (#878)
Browse files Browse the repository at this point in the history
  • Loading branch information
yemreinci authored May 24, 2021
1 parent 2c003be commit 279fec7
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
cmake_minimum_required(VERSION 3.10)

project(hazelcast-cpp-client
VERSION 4.1.0
VERSION 4.1.1
DESCRIPTION "Hazelcast C++ Client"
LANGUAGES CXX)

Expand Down
14 changes: 7 additions & 7 deletions Reference_Manual.md
Original file line number Diff line number Diff line change
Expand Up @@ -175,7 +175,7 @@ Please see [example instructions](https://docs.conan.io/en/latest/getting_starte
- You need to put the following lines to your `conanfile.txt`:
```
[requires]
hazelcast-cpp-client/4.1.0
hazelcast-cpp-client/4.1.1
[generators]
cmake
Expand Down Expand Up @@ -231,22 +231,22 @@ Follow the instructions for your platform:
* [Windows](#1133-windows-users)

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

Alternatively, you may clone the repository and checkout a specific version:
```sh
git clone https://github.com/hazelcast/hazelcast-cpp-client.git
cd hazelcast-cpp-client
git checkout v4.1.0
git checkout v4.1.1
```

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

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:
```bat
cd hazelcast-cpp-client-4.1.0
cd hazelcast-cpp-client-4.1.1
mkdir build
cd build
```
Expand Down
2 changes: 1 addition & 1 deletion examples/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
cmake_minimum_required (VERSION 3.10)

project (hazelcast-cpp-client-examples
VERSION 4.1.0
VERSION 4.1.1
DESCRIPTION "Hazelcast C++ Client Code Examples"
LANGUAGES CXX)

Expand Down
2 changes: 1 addition & 1 deletion hazelcast/test/benchmark/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
cmake_minimum_required(VERSION 3.10)

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

Expand Down

0 comments on commit 279fec7

Please sign in to comment.