This is an automated email from the ASF dual-hosted git repository.

ivandasch pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/ignite-python-thin-client.git


The following commit(s) were added to refs/heads/master by this push:
     new 9f19c2e  Update version for the next release
9f19c2e is described below

commit 9f19c2e8622eff386a870a10dd3b430d090f2065
Author: Ivan Daschinsky <[email protected]>
AuthorDate: Wed Nov 9 17:01:04 2022 +0300

    Update version for the next release
---
 README.md            | 10 +++++-----
 pyignite/__init__.py |  2 +-
 2 files changed, 6 insertions(+), 6 deletions(-)

diff --git a/README.md b/README.md
index be5fa7b..de66c3f 100644
--- a/README.md
+++ b/README.md
@@ -3,9 +3,9 @@ Apache Ignite thin (binary protocol) client, written in Python 
3.
 
 ## Prerequisites
 
-- Python 3.7 or above (3.7, 3.8, 3.9 and 3.10 are tested),
+- Python 3.7 or above (3.7, 3.8, 3.9, 3.10 and 3.11 are tested),
 - Access to Apache Ignite node, local or remote. The current thin client
-  version was tested on Apache Ignite 2.10 (binary client protocol 1.7.0).
+  version was tested on Apache Ignite 2.14 (binary client protocol 1.7.0).
 
 ## Installation
 
@@ -45,12 +45,12 @@ There is an optional C extension to speedup some 
computational intensive tasks.
   
   ***NB!* Docker is required.**
   
-- On Windows MSVC 14.x required, and it should be in path, also python 
versions 3.7, 3.8, 3.9 and 3.10 both for x86 and
+- On Windows MSVC 14.x required, and it should be in path, also python 
versions 3.7, 3.8, 3.9, 3.10 and 3.11 both for x86 and
   x86-64 should be installed. You can disable some of these versions but you'd 
need to edit script for that.
 - For building `wheels` for Windows, invoke script `.\scripts\BuildWheels.ps1` 
using PowerShell. Just make sure that
   your execution policy allows execution of scripts in your environment.
   
-  Ready wheels for `x86` and `x86-64` for different python versions (3.7, 3.8, 
3.9 and 3.10) will be
+  Ready wheels for `x86` and `x86-64` for different python versions (3.7, 3.8, 
3.9, 3.10 and 3.11) will be
   located in `distr` directory.
 
 ### Updating from older version
@@ -67,7 +67,7 @@ pip install pyignite
 
 To install a specific version:
 ```bash
-pip install pyignite==0.5.1
+pip install pyignite==0.6.0
 ```
 
 ## Documentation
diff --git a/pyignite/__init__.py b/pyignite/__init__.py
index 1b0a9c2..824f645 100644
--- a/pyignite/__init__.py
+++ b/pyignite/__init__.py
@@ -17,4 +17,4 @@ from pyignite.client import Client
 from pyignite.aio_client import AioClient
 from pyignite.binary import GenericObjectMeta
 
-__version__ = '0.6.0-dev'
+__version__ = '0.7.0-dev'

Reply via email to