File tree 6 files changed +11
-13
lines changed
6 files changed +11
-13
lines changed Original file line number Diff line number Diff line change 2
2
3
3
# After changing this, run `make update_version` to update various sources
4
4
# which hard-code it.
5
- SNOWBALL_VERSION = 2.2 .0
5
+ SNOWBALL_VERSION = 3.0 .0
6
6
7
7
ifeq ($(OS ) ,Windows_NT)
8
8
EXEEXT = .exe
Original file line number Diff line number Diff line change 1
- up to: cd61f01a4e04c7a79b91a3cc2a42b6ffa144a99b
2
-
3
- Snowball 3.0.0 (2025-05-??)
1
+ Snowball 3.0.0 (2025-05-08)
4
2
===========================
5
3
6
4
Ada
78
76
79
77
+ Store index delta for among substring_i field. This makes trying
80
78
substrings after a failed match slightly faster because we can just add
81
- the offset to the pointer to the current elemtent which we already have .
79
+ the offset to the pointer we already have to the current element .
82
80
83
81
* Code quality:
84
82
Original file line number Diff line number Diff line change @@ -54,8 +54,8 @@ subdirectory.
54
54
To actually build the libstemmer library you then unpack and build the
55
55
distribution tarball, e.g. for C::
56
56
57
- tar xf dist/libstemmer_c-2.2 .0.tar.gz
58
- cd libstemmer_c-2.2 .0
57
+ tar xf dist/libstemmer_c-3.0 .0.tar.gz
58
+ cd libstemmer_c-3.0 .0
59
59
make
60
60
61
61
Cross-compiling
@@ -66,8 +66,8 @@ be built with a native compiler then libstemmer with the cross-compiler. For
66
66
example::
67
67
68
68
make CC=cc dist_libstemmer_c
69
- tar xf dist/libstemmer_c-2.2 .0.tar.gz
70
- cd libstemmer_c-2.2 .0
69
+ tar xf dist/libstemmer_c-3.0 .0.tar.gz
70
+ cd libstemmer_c-3.0 .0
71
71
make CC=riscv64-unknown-linux-gnu-gcc
72
72
73
73
If you are cross-compiling to or from Microsoft Windows, you'll need to also
Original file line number Diff line number Diff line change 1
1
#include <stdio.h>
2
2
3
- #define SNOWBALL_VERSION "2.2 .0"
3
+ #define SNOWBALL_VERSION "3.0 .0"
4
4
5
5
typedef unsigned char byte ;
6
6
typedef unsigned short symbol ;
Original file line number Diff line number Diff line change 32
32
// You can specify all the values or you can default the Build and Revision Numbers
33
33
// by using the '*' as shown below:
34
34
// [assembly: AssemblyVersion("1.0.*")]
35
- [ assembly: AssemblyVersion ( /*SNOWBALL_VERSION*/ "2.2 .0.0" ) ]
36
- [ assembly: AssemblyFileVersion ( /*SNOWBALL_VERSION*/ "2.2 .0.0" ) ]
35
+ [ assembly: AssemblyVersion ( /*SNOWBALL_VERSION*/ "3.0 .0.0" ) ]
36
+ [ assembly: AssemblyFileVersion ( /*SNOWBALL_VERSION*/ "3.0 .0.0" ) ]
Original file line number Diff line number Diff line change 3
3
from setuptools import setup
4
4
import re
5
5
6
- SNOWBALL_VERSION = '2.2 .0'
6
+ SNOWBALL_VERSION = '3.0 .0'
7
7
8
8
n_stemmers = 0
9
9
You can’t perform that action at this time.
0 commit comments