Skip to content

Commit 91b668a

Browse files
committed
Tested up to version 1.18
1 parent 335963b commit 91b668a

File tree

5 files changed

+7
-5
lines changed

5 files changed

+7
-5
lines changed

Diff for: .travis.yml

+1
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ env:
2626
- APACHE_TIKA_VERSION=1.15
2727
- APACHE_TIKA_VERSION=1.16
2828
- APACHE_TIKA_VERSION=1.17
29+
- APACHE_TIKA_VERSION=1.18
2930
before_install:
3031
- pip install --user codecov
3132
install:

Diff for: README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ Features
3232
* Support for local and remote resources
3333
* No heavyweight library dependencies
3434
* Compatible with Apache Tika 1.7 or greater
35-
* Tested up to 1.17
35+
* Tested up to 1.18
3636

3737
Requirements
3838
------------

Diff for: scripts/download.sh

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
#!/usr/bin/env bash
22

33
BINARIES=${APACHE_TIKA_BINARIES:-bin}
4-
VERSION=${APACHE_TIKA_VERSION:-"1.17"}
5-
LATEST="1.17"
4+
VERSION=${APACHE_TIKA_VERSION:-"1.18"}
5+
LATEST="1.18"
66

77
mkdir --parents $BINARIES
88

Diff for: scripts/spawn.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
PORT=9998
44
BINARIES=${APACHE_TIKA_BINARIES:-bin}
5-
VERSION=${APACHE_TIKA_VERSION:-"1.17"}
5+
VERSION=${APACHE_TIKA_VERSION:-"1.18F"}
66

77
RUNNING=`ps aux | grep -c tika-server-$VERSION`
88

Diff for: src/Client.php

+2-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ abstract class Client
2424
*/
2525
protected static $supportedVersions =
2626
[
27-
'1.7', '1.8', '1.9', '1.10', '1.11', '1.12', '1.13', '1.14', '1.15', '1.16', '1.17'
27+
'1.7', '1.8', '1.9', '1.10', '1.11', '1.12', '1.13', '1.14', '1.15', '1.16', '1.17', '1.18'
2828
];
2929

3030
/**
@@ -62,6 +62,7 @@ abstract class Client
6262
* @param int $param2 Java binary path or port for web client
6363
* @param array $options options for cURL request
6464
* @return \Vaites\ApacheTika\Clients\CLIClient|\Vaites\ApacheTika\Clients\WebClient
65+
* @throws \Exception
6566
*/
6667
public static function make($param1 = null, $param2 = null, $options = [])
6768
{

0 commit comments

Comments
 (0)