Skip to content

Commit df65bf5

Browse files
Alan WrightAlan Wright
Alan Wright
authored and
Alan Wright
committed
Release version 3.0.8.
1 parent 0535a06 commit df65bf5

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ project(lucene++)
88

99
set(lucene++_VERSION_MAJOR 3)
1010
set(lucene++_VERSION_MINOR 0)
11-
set(lucene++_VERSION_PATCH 7)
11+
set(lucene++_VERSION_PATCH 8)
1212
set(lucene++_SOVERSION "0")
1313

1414
set(lucene++_VERSION

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Lucene++
22
==========
33

4-
Welcome to lucene++ version **3.0.7**.
4+
Welcome to lucene++ version **3.0.8**.
55

66
Lucene++ is a C++ port of the popular Java [Lucene](http://lucene.apache.org/)
77
library, a high-performance, full-featured text search engine.
@@ -23,8 +23,8 @@ For information on building the Lucene++ suite, please read doc/BUILDING.md
2323
Useful Resources
2424
----------------
2525

26-
Official [Java Lucene](http://lucene.apache.org/java/docs/index.html) - useful links and
27-
documentation relevant to Lucene and lucene++. [Lucene in Action](https://www.amazon.com/dp/1932394281/)
26+
Official [Java Lucene](http://lucene.apache.org/java/docs/index.html) - useful links and
27+
documentation relevant to Lucene and lucene++. [Lucene in Action](https://www.amazon.com/dp/1932394281/)
2828
by Otis Gospodnetic and Erik Hatcher.
2929

3030

@@ -54,13 +54,13 @@ To run the demos
5454
Start by indexing a directory of files - open a command prompt and run
5555
```
5656
./indexfiles <directory to index> <directory to store index>
57-
```
57+
```
5858
Once the indexer has finished, you can query the index using searchfiles
5959
```
6060
./searchfiles -index <directory you stored the index in>
6161
```
6262
This uses an interactive command for you to enter queries, type a query to search the index press enter and you'll see the results.
63-
63+
6464

6565
Acknowledgements
6666
----------------

src/core/util/Constants.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,8 @@ String Constants::OS_NAME = L"HURD";
2525
String Constants::OS_NAME = L"UNKNOWN";
2626
#endif
2727

28-
String Constants::LUCENE_MAIN_VERSION = L"3.0.7";
29-
String Constants::LUCENE_VERSION = L"3.0.7";
28+
String Constants::LUCENE_MAIN_VERSION = L"3.0.8";
29+
String Constants::LUCENE_VERSION = L"3.0.8";
3030

3131
Constants::Constants() {
3232
// private

0 commit comments

Comments
 (0)