Skip to content

Commit 3d9435d

Browse files
committed
Updated version to 2.0.0.
1 parent 654e15e commit 3d9435d

File tree

5 files changed

+13
-24
lines changed

5 files changed

+13
-24
lines changed

core/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<groupId>nl.inl.blacklab</groupId>
88
<artifactId>blacklab-all</artifactId>
9-
<version>2.0.0-RC1</version>
9+
<version>2.0.0</version>
1010
</parent>
1111
<artifactId>blacklab</artifactId>
1212
<packaging>jar</packaging>

core/src/site/markdown/changelog.md

+3
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,9 @@
2121
e.g. decide how many threads you want your BlackLabEngine to have.
2222

2323
### New
24+
* In addition to VTD-XML, Saxon may be used to parse input files for indexing. Saxon supports XPath 3, which
25+
contains many features useful for configuring input formats. It is also faster, at the cost of increased memory
26+
usage for large files.
2427
* Multiple values may be indexed for a metadata field (this is automatic when your XPath matches multiple values).
2528
(this is is the reason why BLS will now report all metadata as lists of values, even if there's only one)
2629
* Added mapValues option to map metadata field values while indexing

core/src/site/markdown/downloads.md

+7-21
Original file line numberDiff line numberDiff line change
@@ -41,33 +41,19 @@ Also see the [Change log](changelog.html).
4141
<td><a href='https://github.com/INL/BlackLab/archive/master.zip'>Source (zip)</a></td>
4242
<td>In-development version</td>
4343
</tr>
44+
<tr>
45+
<td>v2.0.0</td>
46+
<td><a href='https://github.com/INL/BlackLab/releases/download/v2.0.0/blacklab-server-2.0.0.war'>Binary (war)</a></td>
47+
<td><a href='https://github.com/INL/BlackLab/archive/v2.0.0.tar.gz'>Source (tgz)</a></td>
48+
<td><a href='https://github.com/INL/BlackLab/archive/v2.0.0.zip'>Source (zip)</a></td>
49+
<td>New Java API. Multithreaded indexing and search. Saxon (XPath 3) support. Multiple metadata values per field possible. Many more improvements.</td>
50+
</tr>
4451
<tr>
4552
<td>v1.7.2</td>
4653
<td><a href='https://github.com/INL/BlackLab/releases/download/v1.7.2/blacklab-server-1.7.2.war'>Binary (war)</a></td>
4754
<td><a href='https://github.com/INL/BlackLab/archive/v1.7.2.tar.gz'>Source (tgz)</a></td>
4855
<td><a href='https://github.com/INL/BlackLab/archive/v1.7.2.zip'>Source (zip)</a></td>
4956
<td>Made configuring input formats much easier, using a YAML (or JSON) file. Improved corpus structure information to allow better UI generation. Many other improvements.</td>
5057
</tr>
51-
<tr>
52-
<td>v1.6.0</td>
53-
<td><a href='https://github.com/INL/BlackLab/releases/download/v1.6.0/blacklab-1.6.0.jar'>Binary (jar)</a></td>
54-
<td><a href='https://github.com/INL/BlackLab/archive/v1.6.0.tar.gz'>Source (tgz)</a></td>
55-
<td><a href='https://github.com/INL/BlackLab/archive/v1.6.0.zip'>Source (zip)</a></td>
56-
<td>Added support for matching subqueries using forward index. Many other optimizations and fixes.</td>
57-
</tr>
58-
<tr>
59-
<td>v1.5.0</td>
60-
<td><a href='https://github.com/INL/BlackLab/releases/download/v1.5.0/blacklab-1.5.0.jar'>Binary (jar)</a></td>
61-
<td><a href='https://github.com/INL/BlackLab/archive/v1.5.0.tar.gz'>Source (tgz)</a></td>
62-
<td><a href='https://github.com/INL/BlackLab/archive/v1.5.0.zip'>Source (zip)</a></td>
63-
<td>Heavily refactored BlackLab Server to be more modular.</td>
64-
</tr>
65-
<tr>
66-
<td>v1.4.1</td>
67-
<td><a href='https://github.com/INL/BlackLab/releases/download/v1.4.1/blacklab-1.4.1.jar'>Binary (jar)</a></td>
68-
<td><a href='https://github.com/INL/BlackLab/archive/v1.4.1.tar.gz'>Source (tgz)</a></td>
69-
<td><a href='https://github.com/INL/BlackLab/archive/v1.4.1.zip'>Source (zip)</a></td>
70-
<td>Added HitsSample, HitPropertyContextWords and subproperties (experimental).</td>
71-
</tr>
7258
</tbody>
7359
</table>

pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<groupId>nl.inl.blacklab</groupId>
88
<artifactId>blacklab-all</artifactId>
99
<packaging>pom</packaging>
10-
<version>2.0.0-RC1</version>
10+
<version>2.0.0</version>
1111
<name>BlackLab Corpus Search</name>
1212
<description>The parent project for BlackLab Core and BlackLab Server.</description>
1313
<url>https://github.com/INL/BlackLab</url>

server/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<groupId>nl.inl.blacklab</groupId>
88
<artifactId>blacklab-all</artifactId>
9-
<version>2.0.0-RC1</version>
9+
<version>2.0.0</version>
1010
</parent>
1111
<artifactId>blacklab-server</artifactId>
1212
<packaging>war</packaging>

0 commit comments

Comments
 (0)