Skip to content

Commit abd9adc

Browse files
committed
Update for 3.0.0
1 parent d23d356 commit abd9adc

File tree

6 files changed

+11
-13
lines changed

6 files changed

+11
-13
lines changed

GNUmakefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
# After changing this, run `make update_version` to update various sources
44
# which hard-code it.
5-
SNOWBALL_VERSION = 2.2.0
5+
SNOWBALL_VERSION = 3.0.0
66

77
ifeq ($(OS),Windows_NT)
88
EXEEXT = .exe

NEWS

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,4 @@
1-
up to: cd61f01a4e04c7a79b91a3cc2a42b6ffa144a99b
2-
3-
Snowball 3.0.0 (2025-05-??)
1+
Snowball 3.0.0 (2025-05-08)
42
===========================
53

64
Ada
@@ -78,7 +76,7 @@ C/C++
7876

7977
+ Store index delta for among substring_i field. This makes trying
8078
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.
8280

8381
* Code quality:
8482

README.rst

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -54,8 +54,8 @@ subdirectory.
5454
To actually build the libstemmer library you then unpack and build the
5555
distribution tarball, e.g. for C::
5656

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
5959
make
6060

6161
Cross-compiling
@@ -66,8 +66,8 @@ be built with a native compiler then libstemmer with the cross-compiler. For
6666
example::
6767

6868
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
7171
make CC=riscv64-unknown-linux-gnu-gcc
7272

7373
If you are cross-compiling to or from Microsoft Windows, you'll need to also

compiler/header.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#include <stdio.h>
22

3-
#define SNOWBALL_VERSION "2.2.0"
3+
#define SNOWBALL_VERSION "3.0.0"
44

55
typedef unsigned char byte;
66
typedef unsigned short symbol;

csharp/Snowball/AssemblyInfo.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,5 +32,5 @@
3232
// You can specify all the values or you can default the Build and Revision Numbers
3333
// by using the '*' as shown below:
3434
// [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")]

python/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
from setuptools import setup
44
import re
55

6-
SNOWBALL_VERSION = '2.2.0'
6+
SNOWBALL_VERSION = '3.0.0'
77

88
n_stemmers = 0
99

0 commit comments

Comments
 (0)