Skip to content

Commit 40f53ae

Browse files
committed
Tested up to version 1.24
1 parent a1b4cf0 commit 40f53ae

File tree

7 files changed

+9
-8
lines changed

7 files changed

+9
-8
lines changed

.travis.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,7 @@ env:
3737
- APACHE_TIKA_VERSION=1.21
3838
- APACHE_TIKA_VERSION=1.22
3939
- APACHE_TIKA_VERSION=1.23
40+
- APACHE_TIKA_VERSION=1.24
4041
before_install:
4142
- pip install --user codecov
4243
install:

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ to work with the new versions of the tool.
3131
* Support for local and remote resources
3232
* No heavyweight library dependencies
3333
* Compatible with Apache Tika 1.7 or greater
34-
* Tested up to 1.23
34+
* Tested up to 1.24
3535

3636
## Requirements
3737

scripts/download.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/usr/bin/env bash
22

33
BINARIES=${APACHE_TIKA_BINARIES:-bin}
4-
VERSION=${APACHE_TIKA_VERSION:-"1.23"}
4+
VERSION=${APACHE_TIKA_VERSION:-"1.24"}
55
MIRROR="https://archive.apache.org"
66

77
mkdir --parents $BINARIES

scripts/spawn.sh

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

33
PORT=${APACHE_TIKA_PORT:-9998}
44
BINARIES=${APACHE_TIKA_BINARIES:-bin}
5-
VERSION=${APACHE_TIKA_VERSION:-"1.23"}
5+
VERSION=${APACHE_TIKA_VERSION:-"1.24"}
66

77
{
88
java --add-modules java.se.ee -version &&

src/Client.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
* Apache Tika client interface
1414
*
1515
* @author David Martínez <[email protected]>
16-
* @link https://tika.apache.org/1.23/formats.html
16+
* @link https://tika.apache.org/1.24/formats.html
1717
*/
1818
abstract class Client
1919
{
@@ -26,8 +26,8 @@ abstract class Client
2626
*/
2727
protected static $supportedVersions =
2828
[
29-
'1.7', '1.8', '1.9', '1.10', '1.11', '1.12', '1.13', '1.14', '1.15',
30-
'1.16', '1.17', '1.18', '1.19', '1.19.1', '1.20', '1.21', '1.22', '1.23'
29+
'1.7', '1.8', '1.9', '1.10', '1.11', '1.12', '1.13', '1.14', '1.15', '1.16',
30+
'1.17', '1.18', '1.19', '1.19.1', '1.20', '1.21', '1.22', '1.23', '1.24'
3131
];
3232

3333
/**

src/Clients/CLIClient.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
* Apache Tika command line interface client
1111
*
1212
* @author David Martínez <[email protected]>
13-
* @link https://tika.apache.org/1.23/gettingstarted.html#Using_Tika_as_a_command_line_utility
13+
* @link https://tika.apache.org/1.24/gettingstarted.html#Using_Tika_as_a_command_line_utility
1414
*/
1515
class CLIClient extends Client
1616
{

src/Clients/WebClient.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
* Apache Tika web client
1111
*
1212
* @author David Martínez <[email protected]>
13-
* @link http://wiki.apache.org/tika/TikaJAXRS
13+
* @link https://cwiki.apache.org/confluence/display/TIKA/TikaServer
1414
*/
1515
class WebClient extends Client
1616
{

0 commit comments

Comments
 (0)