Skip to content

Commit 1a19cd3

Browse files
committed
Tested up to version 1.24.1
1 parent 40f53ae commit 1a19cd3

File tree

5 files changed

+5
-4
lines changed

5 files changed

+5
-4
lines changed

.travis.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,7 @@ env:
3838
- APACHE_TIKA_VERSION=1.22
3939
- APACHE_TIKA_VERSION=1.23
4040
- APACHE_TIKA_VERSION=1.24
41+
- APACHE_TIKA_VERSION=1.24.1
4142
before_install:
4243
- pip install --user codecov
4344
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.24
34+
* Tested up to 1.24.1
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.24"}
4+
VERSION=${APACHE_TIKA_VERSION:-"1.24.1"}
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.24"}
5+
VERSION=${APACHE_TIKA_VERSION:-"1.24.1"}
66

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

src/Client.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ abstract class Client
2727
protected static $supportedVersions =
2828
[
2929
'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'
30+
'1.17', '1.18', '1.19', '1.19.1', '1.20', '1.21', '1.22', '1.23', '1.24', '1.24.1'
3131
];
3232

3333
/**

0 commit comments

Comments
 (0)