diff --git a/README.rst b/README.rst index cd27d0adf6..ffd0910eef 100644 --- a/README.rst +++ b/README.rst @@ -49,7 +49,7 @@ images `__. .. code:: bash - docker run -p 5701:5701 hazelcast/hazelcast:5.2 + docker run -p 5701:5701 hazelcast/hazelcast:5.3.0 You can also use our ZIP or TAR `distributions `__. diff --git a/docs/conf.py b/docs/conf.py index 4d7c421994..c5226d4fc6 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -72,9 +72,9 @@ # built documents. # # The short X.Y version. -version = "5.2.0" +version = "5.3.0" # The full version, including alpha/beta/rc tags. -release = "5.2.0" +release = "5.3.0" autodoc_member_order = "bysource" autoclass_content = "both" diff --git a/docs/getting_started.rst b/docs/getting_started.rst index 8ef42eba8f..11db64ec40 100644 --- a/docs/getting_started.rst +++ b/docs/getting_started.rst @@ -48,7 +48,7 @@ There are following options to start a Hazelcast cluster easily: .. code:: bash - docker run -p 5701:5701 hazelcast/hazelcast:5.2 + docker run -p 5701:5701 hazelcast/hazelcast:5.3.0 - You can use `Hazelcast CLI `__. diff --git a/examples/README.md b/examples/README.md index 3cff8e7735..d566f0aa62 100644 --- a/examples/README.md +++ b/examples/README.md @@ -14,7 +14,7 @@ How to try these examples * If not, you can use our official Docker images to start a member. ```bash - docker run -p 5701:5701 hazelcast/hazelcast:5.2 + docker run -p 5701:5701 hazelcast/hazelcast:5.3.0 ``` To see the other ways to start Hazelcast members, see [Working with Hazelcast Clusters](https://hazelcast.readthedocs.io/en/stable/getting_started.html#working-with-hazelcast-clusters) diff --git a/examples/jupyter-notebooks/Hazelcast Python Client SQL Support with Hazelcast Viridian Notebook.ipynb b/examples/jupyter-notebooks/Hazelcast Python Client SQL Support with Hazelcast Viridian Notebook.ipynb index 016a91025c..12c23c554e 100644 --- a/examples/jupyter-notebooks/Hazelcast Python Client SQL Support with Hazelcast Viridian Notebook.ipynb +++ b/examples/jupyter-notebooks/Hazelcast Python Client SQL Support with Hazelcast Viridian Notebook.ipynb @@ -253,7 +253,7 @@ "cell_type": "markdown", "source": [ "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", - "

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", + "

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", "

\n", "Now, execute following cells to create mappings to execute SQL queries against your data." ], diff --git a/examples/paging-predicate/member-with-comparator/pom.xml b/examples/paging-predicate/member-with-comparator/pom.xml index 2771790c82..cb93aa51d7 100644 --- a/examples/paging-predicate/member-with-comparator/pom.xml +++ b/examples/paging-predicate/member-with-comparator/pom.xml @@ -17,7 +17,7 @@ com.hazelcast hazelcast - 5.2.3 + 5.3.0 diff --git a/hazelcast/__init__.py b/hazelcast/__init__.py index 8f85139672..d2f37248dc 100644 --- a/hazelcast/__init__.py +++ b/hazelcast/__init__.py @@ -1,4 +1,4 @@ -__version__ = "5.2.0" +__version__ = "5.3.0" # Set the default handler to "hazelcast" loggers # to avoid "No handlers could be found" warnings.