Skip to content

Commit 9c4cc92

Browse files
authored
Bump client version to 5.3.0 (#634)
Also, bumped the version of the Hazelcast in couple of places to 5.3.0.
1 parent e91a2a9 commit 9c4cc92

File tree

7 files changed

+8
-8
lines changed

7 files changed

+8
-8
lines changed

README.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ images <https://hub.docker.com/r/hazelcast/hazelcast/>`__.
4949

5050
.. code:: bash
5151
52-
docker run -p 5701:5701 hazelcast/hazelcast:5.2
52+
docker run -p 5701:5701 hazelcast/hazelcast:5.3.0
5353
5454
You can also use our ZIP or TAR
5555
`distributions <https://hazelcast.com/open-source-projects/downloads/>`__.

docs/conf.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -72,9 +72,9 @@
7272
# built documents.
7373
#
7474
# The short X.Y version.
75-
version = "5.2.0"
75+
version = "5.3.0"
7676
# The full version, including alpha/beta/rc tags.
77-
release = "5.2.0"
77+
release = "5.3.0"
7878

7979
autodoc_member_order = "bysource"
8080
autoclass_content = "both"

docs/getting_started.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ There are following options to start a Hazelcast cluster easily:
4848

4949
.. code:: bash
5050
51-
docker run -p 5701:5701 hazelcast/hazelcast:5.2
51+
docker run -p 5701:5701 hazelcast/hazelcast:5.3.0
5252
5353
- You can use `Hazelcast CLI
5454
<https://docs.hazelcast.com/hazelcast/latest/getting-started/install-hazelcast#using-a-package-manager>`__.

examples/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ How to try these examples
1414
* If not, you can use our official Docker images to start a member.
1515

1616
```bash
17-
docker run -p 5701:5701 hazelcast/hazelcast:5.2
17+
docker run -p 5701:5701 hazelcast/hazelcast:5.3.0
1818
```
1919
To see the other ways to start Hazelcast members, see
2020
[Working with Hazelcast Clusters](https://hazelcast.readthedocs.io/en/stable/getting_started.html#working-with-hazelcast-clusters)

examples/jupyter-notebooks/Hazelcast Python Client SQL Support with Hazelcast Viridian Notebook.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -253,7 +253,7 @@
253253
"cell_type": "markdown",
254254
"source": [
255255
"Here is the critical part. We will insert the data from TMDB API to our Hazelcast Cluster. You can do this in two way. Firstly, you can get a map by calling `hazelcast.get_map()` method and use `put()`, `remove()` and other methods of the returned distributed map object. Secondly you can create a mapping for your data schema using SQL syntax and it directly creates both map and mapping. We preferred second way to show SQL functions in this notebook. \n",
256-
"</br></br>In the mapping query, you should sepicfy the fields of data schema. It can be both primitive types or complex types. Using this mapping, we will execute SQL queries on our maps. You can select any column you want to map; not all fields are mandatory. For more information about mapping, you can visit https://docs.hazelcast.com/hazelcast/5.2/sql/mapping-to-maps\n",
256+
"</br></br>In the mapping query, you should sepicfy the fields of data schema. It can be both primitive types or complex types. Using this mapping, we will execute SQL queries on our maps. You can select any column you want to map; not all fields are mandatory. For more information about mapping, you can visit https://docs.hazelcast.com/hazelcast/5.3/sql/mapping-to-maps\n",
257257
"</br></br>\n",
258258
"Now, execute following cells to create mappings to execute SQL queries against your data."
259259
],

examples/paging-predicate/member-with-comparator/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
<dependency>
1818
<groupId>com.hazelcast</groupId>
1919
<artifactId>hazelcast</artifactId>
20-
<version>5.2.3</version>
20+
<version>5.3.0</version>
2121
</dependency>
2222
</dependencies>
2323

hazelcast/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
__version__ = "5.2.0"
1+
__version__ = "5.3.0"
22

33
# Set the default handler to "hazelcast" loggers
44
# to avoid "No handlers could be found" warnings.

0 commit comments

Comments
 (0)