From 66840ce27d4834780f3ddec4a322a3df93b002d0 Mon Sep 17 00:00:00 2001 From: James Ring Date: Fri, 9 Oct 2020 08:58:13 -0700 Subject: [PATCH] move RE2/J to version 1.5, allows for Debian packaging See issue #112, this will allow Debian package maintainers to use a clean version of re2j rather than a commit hash. --- README.md | 2 +- build.gradle | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 85339355..bd8c827b 100644 --- a/README.md +++ b/README.md @@ -74,7 +74,7 @@ If you're using Maven, you can use the following snippet in your `pom.xml` to ge com.google.re2j re2j - 1.4 + 1.5 ``` diff --git a/build.gradle b/build.gradle index 5208006b..70bf9cbf 100644 --- a/build.gradle +++ b/build.gradle @@ -23,7 +23,7 @@ plugins { cobertura.coverageFormats = ['html', 'xml'] // The name of the release we're working on. See RELEASING.md for details. -def versionName = '1.4' +def versionName = '1.5' wrapper { gradleVersion '4.9'