Skip to content

Commit

Permalink
Version 0.9.2
Browse files Browse the repository at this point in the history
  • Loading branch information
fabiodomingues committed Oct 25, 2023
1 parent fd74182 commit 6600d9d
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 6 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
# CHANGELOG

## Unreleased

## 0.9.2 (2023-10-24)
* [#46](https://github.com/fabiodomingues/clj-depend/issues/46): Fix false violation when using `:access-layers` due to dependency on namespaces not defined in layers.

## 0.9.1 (2023-10-24)
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ Add clj-depend as a dependency, preferably under an alias in `deps.edn`.

```clojure
{:deps { ,,, }
:aliases {:clj-depend {:extra-deps {com.fabiodomingues/clj-depend {:mvn/version "0.9.1"}}
:aliases {:clj-depend {:extra-deps {com.fabiodomingues/clj-depend {:mvn/version "0.9.2"}}
:main-opts ["-m" "clj-depend.main"]}}}
```

Expand Down
2 changes: 1 addition & 1 deletion lein-clj-depend/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ A Leiningen plugin to run [clj-depend](https://github.com/fabiodomingues/clj-dep
Add the plugin to your `project.clj`:

```clojure
:plugins [[com.fabiodomingues/lein-clj-depend "0.9.1"]]
:plugins [[com.fabiodomingues/lein-clj-depend "0.9.2"]]
```

## Usage
Expand Down
4 changes: 2 additions & 2 deletions lein-clj-depend/project.clj
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
(defproject com.fabiodomingues/lein-clj-depend "0.9.2-SNAPSHOT"
(defproject com.fabiodomingues/lein-clj-depend "0.9.2"
:description "Lein plugin to run clj-depend"
:url "https://github.com/fabiodomingues/clj-depend"
:license {:name "EPL-2.0 OR GPL-2.0-or-later WITH Classpath-exception-2.0"
:url "https://www.eclipse.org/legal/epl-2.0/"}
:eval-in-leiningen true
:dependencies [[com.fabiodomingues/clj-depend "0.9.2-SNAPSHOT"]]
:dependencies [[com.fabiodomingues/clj-depend "0.9.2"]]
:deploy-repositories [["releases" {:url "https://repo.clojars.org"
:creds :gpg}]])
2 changes: 1 addition & 1 deletion project.clj
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
(defproject com.fabiodomingues/clj-depend "0.9.2-SNAPSHOT"
(defproject com.fabiodomingues/clj-depend "0.9.2"
:description "A Clojure namespace dependency analyzer"
:url "https://github.com/fabiodomingues/clj-depend"
:license {:name "EPL-2.0 OR GPL-2.0-or-later WITH Classpath-exception-2.0"
Expand Down
2 changes: 1 addition & 1 deletion sample/project.clj
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,6 @@
:url "http://example.com/FIXME"
:license {:name "EPL-2.0 OR GPL-2.0-or-later WITH Classpath-exception-2.0"
:url "https://www.eclipse.org/legal/epl-2.0/"}
:plugins [[com.fabiodomingues/lein-clj-depend "0.9.1"]]
:plugins [[com.fabiodomingues/lein-clj-depend "0.9.2"]]
:dependencies [[org.clojure/clojure "1.11.1"]]
:repl-options {:init-ns sample.core})

0 comments on commit 6600d9d

Please sign in to comment.