Skip to content

Commit c7c1cd8

Browse files
committed
2.9.0
1 parent 7e92905 commit c7c1cd8

File tree

6 files changed

+13
-9
lines changed

6 files changed

+13
-9
lines changed

.github/ISSUE_TEMPLATE/bug.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -48,8 +48,8 @@ body:
4848
label: Installation compliance
4949
description:
5050
options:
51-
- 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.8.0#leiningen), [Clojure CLI](https://github.com/rm-hull/nvd-clojure/tree/v2.8.0#clojure-cli), [Clojure CLI Tool](https://github.com/rm-hull/nvd-clojure/tree/v2.8.0#clojure-cli-tool)).
51+
- 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.9.0#leiningen), [Clojure CLI](https://github.com/rm-hull/nvd-clojure/tree/v2.9.0#clojure-cli), [Clojure CLI Tool](https://github.com/rm-hull/nvd-clojure/tree/v2.9.0#clojure-cli-tool)).
5252
required: true
53-
- label: I understand that false positives [can be skipped locally](https://github.com/rm-hull/nvd-clojure/tree/v2.8.0#configuration-options) and should be reported to [DependencyCheck](https://github.com/jeremylong/DependencyCheck).
53+
- label: I understand that false positives [can be skipped locally](https://github.com/rm-hull/nvd-clojure/tree/v2.9.0#configuration-options) and should be reported to [DependencyCheck](https://github.com/jeremylong/DependencyCheck).
5454
required: false
5555

.github/ISSUE_TEMPLATE/issue.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -32,8 +32,8 @@ body:
3232
label: Installation compliance
3333
description:
3434
options:
35-
- 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.8.0#leiningen), [Clojure CLI](https://github.com/rm-hull/nvd-clojure/tree/v2.8.0#clojure-cli), [Clojure CLI Tool](https://github.com/rm-hull/nvd-clojure/tree/v2.8.0#clojure-cli-tool)).
35+
- 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.9.0#leiningen), [Clojure CLI](https://github.com/rm-hull/nvd-clojure/tree/v2.9.0#clojure-cli), [Clojure CLI Tool](https://github.com/rm-hull/nvd-clojure/tree/v2.9.0#clojure-cli-tool)).
3636
required: true
37-
- label: I understand that false positives [can be skipped locally](https://github.com/rm-hull/nvd-clojure/tree/v2.8.0#configuration-options) and should be reported to [DependencyCheck](https://github.com/jeremylong/DependencyCheck).
37+
- label: I understand that false positives [can be skipped locally](https://github.com/rm-hull/nvd-clojure/tree/v2.9.0#configuration-options) and should be reported to [DependencyCheck](https://github.com/jeremylong/DependencyCheck).
3838
required: false
3939

CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## Changes from 2.8.0 to 2.9.0
2+
3+
* Update `dependency-check-core`.
4+
15
## Changes from 2.7.0 to 2.8.0
26

37
* Update `dependency-check-core`.

Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
# Example usage:
44
# copy a one-off Clojars token to your clipboard
5-
# GIT_TAG=v2.8.0 CLOJARS_USERNAME=$USER CLOJARS_PASSWORD=$(pbpaste) make deploy
5+
# GIT_TAG=v2.9.0 CLOJARS_USERNAME=$USER CLOJARS_PASSWORD=$(pbpaste) make deploy
66

77
deploy: check-env
88
lein clean

README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -26,12 +26,12 @@ dependencies and passes them to a library called [Dependency-Check](https://gith
2626

2727
<details>
2828

29-
Please create a separate project consisting of `[nvd-clojure/nvd-clojure "2.8.0"]`. Said project can be located inside the targeted repo's Git repository.
29+
Please create a separate project consisting of `[nvd-clojure/nvd-clojure "2.9.0"]`. Said project can be located inside the targeted repo's Git repository.
3030

3131
```
3232
(defproject nvd-helper "local"
3333
:description "nvd-clojure helper project"
34-
:dependencies [[nvd-clojure "2.8.0"]
34+
:dependencies [[nvd-clojure "2.9.0"]
3535
[org.clojure/clojure "1.11.1"]]
3636
:jvm-opts ["-Dclojure.main.report=stderr"])
3737
```
@@ -56,7 +56,7 @@ If you are using a multi-modules solution (e.g. `lein-monolith`), you should ens
5656

5757
<details>
5858

59-
Please create a separate project consisting exclusively of `nvd-clojure/nvd-clojure {:mvn/version "2.8.0"}`. Said project can be located inside the targeted repo's Git repository.
59+
Please create a separate project consisting exclusively of `nvd-clojure/nvd-clojure {:mvn/version "2.9.0"}`. Said project can be located inside the targeted repo's Git repository.
6060

6161
Please do not add nvd-clojure as a dependency in the deps.edn of the project to be analysed.
6262

project.clj

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
(defproject nvd-clojure "2.8.0"
1+
(defproject nvd-clojure "2.9.0"
22
:description "National Vulnerability Database dependency checker"
33
:url "https://github.com/rm-hull/nvd-clojure"
44
:license {:name "The MIT License (MIT)"

0 commit comments

Comments
 (0)