This is an automated email from the ASF dual-hosted git repository. tallison pushed a commit to branch prep-3.0.0-beta2-release in repository https://gitbox.apache.org/repos/asf/tika.git
commit 8a4bd9ed5575da7ded196130f5219413c35c5508 Author: tallison <[email protected]> AuthorDate: Tue Jul 9 16:43:15 2024 -0400 Prep for 3.0.0-BETA2 release --- CHANGES.txt | 6 +++++- tika-core/src/test/java/org/apache/tika/TikaIT.java | 2 +- tika-parent/pom.xml | 2 +- 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/CHANGES.txt b/CHANGES.txt index 1f3f4cec3..22ca8e0eb 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -1,4 +1,4 @@ -Release 3.0.0-BETA2 - ??? +Release 3.0.0-BETA2 - 07/09/2024 BREAKING CHANGES @@ -10,6 +10,10 @@ Release 3.0.0-BETA2 - ??? Other Changes + * Add GRPC server (TIKA-4181). + + * Improved configurability in tika-pipes (TIKA-4243). + * Add optional PST parser based on libpst/readpst (TIKA-4250). Release 3.0.0-BETA - 12/01/2023 diff --git a/tika-core/src/test/java/org/apache/tika/TikaIT.java b/tika-core/src/test/java/org/apache/tika/TikaIT.java index 160481851..17b617eab 100644 --- a/tika-core/src/test/java/org/apache/tika/TikaIT.java +++ b/tika-core/src/test/java/org/apache/tika/TikaIT.java @@ -28,7 +28,7 @@ public class TikaIT { String version = new Tika().toString(); assertNotNull(version); assertTrue( - version.matches("Apache Tika \\d+\\.\\d+\\.\\d+(-(?:ALPHA|BETA))?(?:-SNAPSHOT)?")); + version.matches("Apache Tika \\d+\\.\\d+\\.\\d+(-(?:ALPHA|BETA)\\d*)?(?:-SNAPSHOT)?")); } } diff --git a/tika-parent/pom.xml b/tika-parent/pom.xml index 3aa7601a6..246a24839 100644 --- a/tika-parent/pom.xml +++ b/tika-parent/pom.xml @@ -25,7 +25,7 @@ <parent> <groupId>org.apache</groupId> <artifactId>apache</artifactId> - <version>32</version> + <version>33</version> <relativePath /> </parent>
