Skip to content

Commit

Permalink
1.6.0
Browse files Browse the repository at this point in the history
  • Loading branch information
vemv committed Sep 27, 2021
1 parent 2a0e5d9 commit 90a825e
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 9 deletions.
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
## Changes from 1.5.0 to
## Changes from 1.5.0 to 1.6.0

#### New

* Implement `:throw-if-check-unsuccessful?` option
* Fixes https://github.com/rm-hull/nvd-clojure/issues/50
* Upgrade `dependency-check-core` dependency

### Changes from 0.6.0 to 1.0

Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,18 +26,18 @@ dependencies and passes them to a library called [Dependency-Check](https://gith

#### Clojure CLI

To install globally, add `nvd-clojure/nvd-clojure {:mvn/version "1.5.0"}`
To install globally, add `nvd-clojure/nvd-clojure {:mvn/version "1.6.0"}`
under `:aliases` in _~/.clojure/deps.edn_, or add it to `:aliases` in
the project local `deps.edn`, to look something like this:

```clojure
:aliases {:nvd {:extra-deps {nvd-clojure/nvd-clojure {:mvn/version "1.5.0"}}
:aliases {:nvd {:extra-deps {nvd-clojure/nvd-clojure {:mvn/version "1.6.0"}}
:main-opts ["-m" "nvd.task.check"]}}
```

#### Leiningen

To install globally, add `[lein-nvd "1.5.0"]` into the `:plugins` vector of
To install globally, add `[lein-nvd "1.6.0"]` into the `:plugins` vector of
your `:user` profile in _~/.lein/profiles.clj_, or on a per-project basis, add
to the profiles section of your _project.clj_.

Expand Down
4 changes: 2 additions & 2 deletions example/project.clj
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,6 @@
:nvd-throw-on-exit {:nvd {:throw-if-check-unsuccessful? true}}
:dev {
:dependencies [
[lein-nvd "1.5.0"]]
[lein-nvd "RELEASE"]]
:plugins [
[lein-nvd "1.5.0"]]}})
[lein-nvd "RELEASE"]]}})
4 changes: 2 additions & 2 deletions plugin/project.clj
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
(defproject lein-nvd "1.5.0"
(defproject lein-nvd "1.6.0"
:description "National Vulnerability Database [https://nvd.nist.gov/] dependency-checker leiningen plugin."
:url "https://github.com/rm-hull/nvd-clojure"
:license {:name "The MIT License (MIT)"
Expand All @@ -18,7 +18,7 @@
org.slf4j/slf4j-api
org.codehaus.plexus/plexus-utils]]
[org.slf4j/jcl-over-slf4j "1.7.30"]
[nvd-clojure "1.5.0"]]
[nvd-clojure "1.6.0"]]
:scm {:url "git@github.com:rm-hull/nvd-clojure.git"}
:source-paths ["src"]
:jar-exclusions [#"(?:^|/).git"]
Expand Down
2 changes: 1 addition & 1 deletion project.clj
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
(defproject nvd-clojure "1.5.0"
(defproject nvd-clojure "1.6.0"
:description "National Vulnerability Database [https://nvd.nist.gov/] dependency-checker"
:url "https://github.com/rm-hull/nvd-clojure"
:license {:name "The MIT License (MIT)"
Expand Down

0 comments on commit 90a825e

Please sign in to comment.