Skip to content

Commit a284ab5

Browse files
committed
Prep for 5.0.0 release
1 parent 7799566 commit a284ab5

File tree

6 files changed

+14
-14
lines changed

6 files changed

+14
-14
lines changed

.github/ISSUE_TEMPLATE/bug.yml

Lines changed: 2 additions & 2 deletions
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/v4.0.0#leiningen), [Clojure CLI](https://github.com/rm-hull/nvd-clojure/tree/v4.0.0#clojure-cli), [Clojure CLI Tool](https://github.com/rm-hull/nvd-clojure/tree/v4.0.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/v5.0.0#leiningen), [Clojure CLI](https://github.com/rm-hull/nvd-clojure/tree/v5.0.0#clojure-cli), [Clojure CLI Tool](https://github.com/rm-hull/nvd-clojure/tree/v5.0.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/v4.0.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/v5.0.0#configuration-options) and should be reported to [DependencyCheck](https://github.com/jeremylong/DependencyCheck).
5454
required: false
5555

.github/ISSUE_TEMPLATE/issue.yml

Lines changed: 2 additions & 2 deletions
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/v4.0.0#leiningen), [Clojure CLI](https://github.com/rm-hull/nvd-clojure/tree/v4.0.0#clojure-cli), [Clojure CLI Tool](https://github.com/rm-hull/nvd-clojure/tree/v4.0.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/v5.0.0#leiningen), [Clojure CLI](https://github.com/rm-hull/nvd-clojure/tree/v5.0.0#clojure-cli), [Clojure CLI Tool](https://github.com/rm-hull/nvd-clojure/tree/v5.0.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/v4.0.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/v5.0.0#configuration-options) and should be reported to [DependencyCheck](https://github.com/jeremylong/DependencyCheck).
3838
required: false
3939

Makefile

Lines changed: 1 addition & 1 deletion
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=v4.0.0 CLOJARS_USERNAME=$USER CLOJARS_PASSWORD=$(pbpaste) make deploy
5+
# GIT_TAG=v5.0.0 CLOJARS_USERNAME=$USER CLOJARS_PASSWORD=$(pbpaste) make deploy
66

77
deploy: check-env
88
lein clean

README.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -18,19 +18,19 @@ will be checked for known security vulnerabilities. `nvd-clojure` passes them to
1818
1919
### Installation and basic usage
2020

21-
> _Please see also:_ [Avoiding classpath interference](https://github.com/rm-hull/nvd-clojure/blob/v4.0.0/FAQ.md#what-is-classpath-interference)
21+
> _Please see also:_ [Avoiding classpath interference](https://github.com/rm-hull/nvd-clojure/blob/v5.0.0/FAQ.md#what-is-classpath-interference)
2222
2323
#### Leiningen
2424

2525
<details>
2626

27-
Please create a separate project consisting of `[nvd-clojure/nvd-clojure "4.0.0"]`. Said project can be located inside the targeted repo's Git repository.
27+
Please create a separate project consisting of `[nvd-clojure/nvd-clojure "5.0.0"]`. Said project can be located inside the targeted repo's Git repository.
2828

2929
```clj
3030
(defproject nvd-helper "local"
3131
:description "nvd-clojure helper project"
32-
:dependencies [[nvd-clojure "4.0.0"]
33-
[org.clojure/clojure "1.11.1"]]
32+
:dependencies [[nvd-clojure "5.0.0"]
33+
[org.clojure/clojure "1.12.0"]]
3434
:jvm-opts ["-Dclojure.main.report=stderr"])
3535
```
3636

@@ -54,7 +54,7 @@ If you are using a multi-modules solution (e.g. `lein-monolith`), you should ens
5454

5555
<details>
5656

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

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

@@ -155,7 +155,7 @@ dependency relationships are:
155155
dependencies, and suggest upgraded versions, and can optionally be configured
156156
to update the project file.
157157

158-
(Note that that is only one of the multiple ways of remediating a given vulnerability, please see [FAQ](https://github.com/rm-hull/nvd-clojure/blob/v4.0.0/FAQ.md#how-to-remediate-a-cve-is-it-a-good-idea-to-automate-remediation))
158+
(Note that that is only one of the multiple ways of remediating a given vulnerability, please see [FAQ](https://github.com/rm-hull/nvd-clojure/blob/v5.0.0/FAQ.md#how-to-remediate-a-cve-is-it-a-good-idea-to-automate-remediation))
159159

160160
## Configuration
161161

@@ -212,7 +212,7 @@ You can also set logging properties directly through Java system properties (the
212212
clojure -J-Dclojure.main.report=stderr -J-Dorg.slf4j.simpleLogger.log.org.apache.commons=error -Tnvd nvd.task/check # ...
213213
```
214214

215-
## [FAQ](https://github.com/rm-hull/nvd-clojure/blob/v4.0.0/FAQ.md)
215+
## [FAQ](https://github.com/rm-hull/nvd-clojure/blob/v5.0.0/FAQ.md)
216216

217217
## Attribution
218218

project.clj

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

resources/nvd_clojure/default_config_content.edn

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
;; Feel free to tweak it, version-control it and remove any comment.
88

9-
;; Configuration reference: https://github.com/rm-hull/nvd-clojure/tree/v4.0.0#configuration-options
9+
;; Configuration reference: https://github.com/rm-hull/nvd-clojure/tree/v5.0.0#configuration-options
1010

1111
{;; You can use the `:suppression-file` in order to silence false positives.
1212
;; This file will be automatically created, with whatever filename is specified here, if it didn't exist already.

0 commit comments

Comments
 (0)