Author: vajda
Date: Fri Dec 10 20:20:24 2021
New Revision: 1895791

URL: http://svn.apache.org/viewvc?rev=1895791&view=rev
Log:
release 3.11

Modified:
    lucene/pylucene/trunk/jcc/CHANGES
    lucene/pylucene/trunk/jcc/jcc3/sources/JCCEnv.cpp
    lucene/pylucene/trunk/jcc/setup.py

Modified: lucene/pylucene/trunk/jcc/CHANGES
URL: 
http://svn.apache.org/viewvc/lucene/pylucene/trunk/jcc/CHANGES?rev=1895791&r1=1895790&r2=1895791&view=diff
==============================================================================
--- lucene/pylucene/trunk/jcc/CHANGES (original)
+++ lucene/pylucene/trunk/jcc/CHANGES Fri Dec 10 20:20:24 2021
@@ -1,7 +1,6 @@
-Version 3.10 ->
+Version 3.10 -> 3.11
 ---------------------
  - added support for building with native JDK 17 early access on Apple M1
- - 
 
 Version 3.9 -> 3.10
 -------------------

Modified: lucene/pylucene/trunk/jcc/jcc3/sources/JCCEnv.cpp
URL: 
http://svn.apache.org/viewvc/lucene/pylucene/trunk/jcc/jcc3/sources/JCCEnv.cpp?rev=1895791&r1=1895790&r2=1895791&view=diff
==============================================================================
--- lucene/pylucene/trunk/jcc/jcc3/sources/JCCEnv.cpp (original)
+++ lucene/pylucene/trunk/jcc/jcc3/sources/JCCEnv.cpp Fri Dec 10 20:20:24 2021
@@ -1003,7 +1003,7 @@ jstring JCCEnv::fromPyString(PyObject *o
                    it != jchars.end(); ++it)
                   *it = (jchar) *(pchars++);
 
-              return get_vm_env()->NewString(jchars.data(), (size_t) len);
+              return get_vm_env()->NewString(jchars.data(), (jsize) len);
           }
 
           case PyUnicode_2BYTE_KIND: {

Modified: lucene/pylucene/trunk/jcc/setup.py
URL: 
http://svn.apache.org/viewvc/lucene/pylucene/trunk/jcc/setup.py?rev=1895791&r1=1895790&r2=1895791&view=diff
==============================================================================
--- lucene/pylucene/trunk/jcc/setup.py (original)
+++ lucene/pylucene/trunk/jcc/setup.py Fri Dec 10 20:20:24 2021
@@ -12,7 +12,7 @@
 
 import os, sys, platform, subprocess
 
-jcc_ver = '3.10'
+jcc_ver = '3.11'
 machine = platform.machine()
 using_python2 = sys.version_info < (3,)
 
@@ -33,7 +33,7 @@ else:
 # Add or edit the entry corresponding to your system in the JDK, INCLUDES,
 # CFLAGS, DEBUG_CFLAGS, LFLAGS and JAVAC dictionaries below.
 # These entries are used to build JCC _and_ by JCC to drive compiling and
-# linking via distutils or setuptools the extensions it generated code for.
+# linking via distutils or setuptools the extensions it generates code for.
 #
 # The key for your system is determined by the platform variable defined
 # above.


Reply via email to