From 348a661e56a424b088b0e1cd651bfd44405baacb Mon Sep 17 00:00:00 2001 From: Jeremy Long Date: Mon, 27 Nov 2023 05:57:38 -0500 Subject: [PATCH] chore: prepare release (#99) --- .../src/main/groovy/vuln.tools.java-common-conventions.gradle | 2 +- open-vulnerability-clients/README.md | 4 ++-- vulnz/README.md | 4 ++-- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/buildSrc/src/main/groovy/vuln.tools.java-common-conventions.gradle b/buildSrc/src/main/groovy/vuln.tools.java-common-conventions.gradle index a3a8fa78..0a93614a 100644 --- a/buildSrc/src/main/groovy/vuln.tools.java-common-conventions.gradle +++ b/buildSrc/src/main/groovy/vuln.tools.java-common-conventions.gradle @@ -12,7 +12,7 @@ plugins { } group 'io.github.jeremylong' -version = '5.0.2' +version = '5.0.3' repositories { mavenCentral() diff --git a/open-vulnerability-clients/README.md b/open-vulnerability-clients/README.md index dc6aa2a7..f60f0766 100644 --- a/open-vulnerability-clients/README.md +++ b/open-vulnerability-clients/README.md @@ -39,14 +39,14 @@ See API usage examples in the [open-vulnerability-store](https://github.com/jere io.github.jeremylong open-vulnerability-clients - 5.0.2 + 5.0.3 ``` ### gradle ```groovy -implementation 'io.github.jeremylong:open-vulnerability-clients:5.0.2' +implementation 'io.github.jeremylong:open-vulnerability-clients:5.0.3' ``` ### api usage diff --git a/vulnz/README.md b/vulnz/README.md index 2293b60e..3351d245 100644 --- a/vulnz/README.md +++ b/vulnz/README.md @@ -72,7 +72,7 @@ export JAVA_OPTS="-Xmx2g" Alternatively, run the CLI using the `-Xmx2g` argument: ```bash -java -Xmx2g -jar ./vulnz-5.0.2.jar +java -Xmx2g -jar ./vulnz-5.0.3.jar ``` ### Creating the Cache @@ -89,7 +89,7 @@ for file in *.json; do gzip -k "${file}"; done Alternatively, without using the above install command: ```bash -./vulnz-5.0.2.jar cve --cache --directory ./cache +./vulnz-5.0.3.jar cve --cache --directory ./cache cd cache for file in *.json; do gzip -k "${file}"; done ```