Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/coverage_runner.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ jobs:
- ${{ needs.python-versions.outputs.earliest-python-version }}
- ${{ needs.python-versions.outputs.latest-python-version }}
os: [ ubuntu-latest, windows-latest ]
hz_version: [ "5.7.0" ]
hz_version: [ "5.8.0" ]
fail-fast: false

steps:
Expand Down
12 changes: 6 additions & 6 deletions docs/getting_started_asyncio.rst
Original file line number Diff line number Diff line change
Expand Up @@ -116,10 +116,10 @@ and UUID to the ``stderr``.

.. code:: text

INFO:hazelcast.lifecycle:HazelcastClient 5.6.0 is STARTING
INFO:hazelcast.lifecycle:HazelcastClient 5.6.0 is STARTED
INFO:hazelcast.lifecycle:HazelcastClient 5.7.0 is STARTING
INFO:hazelcast.lifecycle:HazelcastClient 5.7.0 is STARTED
INFO:hazelcast.internal.asyncio_connection:Trying to connect to Address(host=127.0.0.1, port=5701)
INFO:hazelcast.lifecycle:HazelcastClient 5.6.0 is CONNECTED
INFO:hazelcast.lifecycle:HazelcastClient 5.7.0 is CONNECTED
INFO:hazelcast.internal.asyncio_connection:Authenticated with server Address(host=127.0.0.1, port=5701):49c5407d-78f4-4611-a025-95f7afd0ab68, server version: 5.5.2, local address: Address(host=127.0.0.1, port=56134)
INFO:hazelcast.internal.asyncio_cluster:

Expand All @@ -128,10 +128,10 @@ and UUID to the ``stderr``.
}

INFO:hazelcast.internal.asyncio_client:Client started
INFO:hazelcast.lifecycle:HazelcastClient 5.6.0 is SHUTTING_DOWN
INFO:hazelcast.lifecycle:HazelcastClient 5.7.0 is SHUTTING_DOWN
INFO:hazelcast.internal.asyncio_connection:Removed connection to Address(host=127.0.0.1, port=5701):49c5407d-78f4-4611-a025-95f7afd0ab68, connection: <hazelcast.internal.asyncio_reactor.AsyncioConnection object at 0x7605c4aa8d70>
INFO:hazelcast.lifecycle:HazelcastClient 5.6.0 is DISCONNECTED
INFO:hazelcast.lifecycle:HazelcastClient 5.6.0 is SHUTDOWN
INFO:hazelcast.lifecycle:HazelcastClient 5.7.0 is DISCONNECTED
INFO:hazelcast.lifecycle:HazelcastClient 5.7.0 is SHUTDOWN

Congratulations!
You just started a Hazelcast Python client instance.
Expand Down
2 changes: 1 addition & 1 deletion examples/paging-predicate/member-with-comparator/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
<dependency>
<groupId>com.hazelcast</groupId>
<artifactId>hazelcast</artifactId>
<version>5.6.0</version>
<version>5.7.0</version>
</dependency>
</dependencies>

Expand Down
2 changes: 1 addition & 1 deletion hazelcast/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
__version__ = "5.7.0"
__version__ = "5.8.0"

# Set the default handler to "hazelcast" loggers
# to avoid "No handlers could be found" warnings.
Expand Down
2 changes: 1 addition & 1 deletion start_rc.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
import sys
from os.path import isfile

SERVER_VERSION = "5.6.0-SNAPSHOT"
SERVER_VERSION = "5.8.0-SNAPSHOT"
RC_VERSION = "0.8-SNAPSHOT"

RELEASE_REPO = "https://repo.maven.apache.org/maven2"
Expand Down