Skip to content

Commit

Permalink
1.9.0
Browse files Browse the repository at this point in the history
  • Loading branch information
vemv committed Nov 18, 2021
1 parent 7f74add commit 490afd4
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 6 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
## Changes from 1.8.0 to 1.9.0

#### New

* Offer a new API oriented for Clojure CLI Tools users.
* Skip analyzing source directories (as opposed to .jar files), which are irrelevant (as analyzing sources is beyond the scope of `dependency-check-core`) and can hinder Clojure CLI usage patterns.

## Changes from 1.7.0 to 1.8.0

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

To install in a given project, you can add `nvd-clojure/nvd-clojure {:mvn/version "1.8.0"}` to your deps.edn.
To install in a given project, you can add `nvd-clojure/nvd-clojure {:mvn/version "1.9.0"}` to your deps.edn.

If you have CLI version 1.10.3.933 or later, you can also install `nvd-clojure` as a "tool":

Expand All @@ -45,13 +45,13 @@ 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.8.0"}}
:aliases {:nvd {:extra-deps {nvd-clojure/nvd-clojure {:mvn/version "1.9.0"}}
:main-opts ["-m" "nvd.task.check"]}}
```

#### Leiningen

To install globally, add `[lein-nvd "1.8.0"]` into the `:plugins` vector of
To install globally, add `[lein-nvd "1.9.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 plugin/project.clj
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
(defproject lein-nvd "1.8.0"
(defproject lein-nvd "1.9.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.8.0"]]
[nvd-clojure "1.9.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.8.0"
(defproject nvd-clojure "1.9.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 490afd4

Please sign in to comment.