From 65b2f4b72cad86e07903895c98553570381bba85 Mon Sep 17 00:00:00 2001 From: vemv Date: Fri, 18 Nov 2022 05:47:24 +0100 Subject: [PATCH] 2.11.0 --- .github/ISSUE_TEMPLATE/bug.yml | 4 ++-- .github/ISSUE_TEMPLATE/issue.yml | 4 ++-- CHANGELOG.md | 4 ++++ Makefile | 2 +- README.md | 6 +++--- project.clj | 2 +- 6 files changed, 13 insertions(+), 9 deletions(-) diff --git a/.github/ISSUE_TEMPLATE/bug.yml b/.github/ISSUE_TEMPLATE/bug.yml index 05512e9..afaf150 100644 --- a/.github/ISSUE_TEMPLATE/bug.yml +++ b/.github/ISSUE_TEMPLATE/bug.yml @@ -48,8 +48,8 @@ body: label: Installation compliance description: options: - - label: I have read again and made sure that I'm following **exactly** the instructions for my tool of choice ([Leiningen](https://github.com/rm-hull/nvd-clojure/tree/v2.10.0#leiningen), [Clojure CLI](https://github.com/rm-hull/nvd-clojure/tree/v2.10.0#clojure-cli), [Clojure CLI Tool](https://github.com/rm-hull/nvd-clojure/tree/v2.10.0#clojure-cli-tool)). + - label: I have read again and made sure that I'm following **exactly** the instructions for my tool of choice ([Leiningen](https://github.com/rm-hull/nvd-clojure/tree/v2.11.0#leiningen), [Clojure CLI](https://github.com/rm-hull/nvd-clojure/tree/v2.11.0#clojure-cli), [Clojure CLI Tool](https://github.com/rm-hull/nvd-clojure/tree/v2.11.0#clojure-cli-tool)). required: true - - label: I understand that false positives [can be skipped locally](https://github.com/rm-hull/nvd-clojure/tree/v2.10.0#configuration-options) and should be reported to [DependencyCheck](https://github.com/jeremylong/DependencyCheck). + - label: I understand that false positives [can be skipped locally](https://github.com/rm-hull/nvd-clojure/tree/v2.11.0#configuration-options) and should be reported to [DependencyCheck](https://github.com/jeremylong/DependencyCheck). required: false diff --git a/.github/ISSUE_TEMPLATE/issue.yml b/.github/ISSUE_TEMPLATE/issue.yml index 13757b8..e943a9c 100644 --- a/.github/ISSUE_TEMPLATE/issue.yml +++ b/.github/ISSUE_TEMPLATE/issue.yml @@ -32,8 +32,8 @@ body: label: Installation compliance description: options: - - label: I have read again and made sure that I'm following **exactly** the instructions for my tool of choice ([Leiningen](https://github.com/rm-hull/nvd-clojure/tree/v2.10.0#leiningen), [Clojure CLI](https://github.com/rm-hull/nvd-clojure/tree/v2.10.0#clojure-cli), [Clojure CLI Tool](https://github.com/rm-hull/nvd-clojure/tree/v2.10.0#clojure-cli-tool)). + - label: I have read again and made sure that I'm following **exactly** the instructions for my tool of choice ([Leiningen](https://github.com/rm-hull/nvd-clojure/tree/v2.11.0#leiningen), [Clojure CLI](https://github.com/rm-hull/nvd-clojure/tree/v2.11.0#clojure-cli), [Clojure CLI Tool](https://github.com/rm-hull/nvd-clojure/tree/v2.11.0#clojure-cli-tool)). required: true - - label: I understand that false positives [can be skipped locally](https://github.com/rm-hull/nvd-clojure/tree/v2.10.0#configuration-options) and should be reported to [DependencyCheck](https://github.com/jeremylong/DependencyCheck). + - label: I understand that false positives [can be skipped locally](https://github.com/rm-hull/nvd-clojure/tree/v2.11.0#configuration-options) and should be reported to [DependencyCheck](https://github.com/jeremylong/DependencyCheck). required: false diff --git a/CHANGELOG.md b/CHANGELOG.md index 741a13e..844f456 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ +## Changes from 2.10.0 to 2.11.0 + +* Update `dependency-check-core`. + ## Changes from 2.9.0 to 2.10.0 * Update `dependency-check-core`. diff --git a/Makefile b/Makefile index b7f6e01..79ed992 100644 --- a/Makefile +++ b/Makefile @@ -2,7 +2,7 @@ # Example usage: # copy a one-off Clojars token to your clipboard -# GIT_TAG=v2.10.0 CLOJARS_USERNAME=$USER CLOJARS_PASSWORD=$(pbpaste) make deploy +# GIT_TAG=v2.11.0 CLOJARS_USERNAME=$USER CLOJARS_PASSWORD=$(pbpaste) make deploy deploy: check-env lein clean diff --git a/README.md b/README.md index fd3809f..4db592d 100644 --- a/README.md +++ b/README.md @@ -26,12 +26,12 @@ dependencies and passes them to a library called [Dependency-Check](https://gith
-Please create a separate project consisting of `[nvd-clojure/nvd-clojure "2.10.0"]`. Said project can be located inside the targeted repo's Git repository. +Please create a separate project consisting of `[nvd-clojure/nvd-clojure "2.11.0"]`. Said project can be located inside the targeted repo's Git repository. ``` (defproject nvd-helper "local" :description "nvd-clojure helper project" - :dependencies [[nvd-clojure "2.10.0"] + :dependencies [[nvd-clojure "2.11.0"] [org.clojure/clojure "1.11.1"]] :jvm-opts ["-Dclojure.main.report=stderr"]) ``` @@ -56,7 +56,7 @@ If you are using a multi-modules solution (e.g. `lein-monolith`), you should ens
-Please create a separate project consisting exclusively of `nvd-clojure/nvd-clojure {:mvn/version "2.10.0"}`. Said project can be located inside the targeted repo's Git repository. +Please create a separate project consisting exclusively of `nvd-clojure/nvd-clojure {:mvn/version "2.11.0"}`. Said project can be located inside the targeted repo's Git repository. Please do not add nvd-clojure as a dependency in the deps.edn of the project to be analysed. diff --git a/project.clj b/project.clj index 3881d4a..5f05f29 100644 --- a/project.clj +++ b/project.clj @@ -1,4 +1,4 @@ -(defproject nvd-clojure "2.10.0" +(defproject nvd-clojure "2.11.0" :description "National Vulnerability Database dependency checker" :url "https://github.com/rm-hull/nvd-clojure" :license {:name "The MIT License (MIT)"