Skip to content

Commit

Permalink
release v5.1.0 (#54)
Browse files Browse the repository at this point in the history
Signed-off-by: Sean Corfield <[email protected]>
  • Loading branch information
seancorfield authored Jan 13, 2024
1 parent 151ca1d commit 307bffb
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# CHANGELOG

* v5.0.2 in progress
* v5.1.0 151ca1d -- 2024-01-13
* Address [#49](https://github.com/clj-holmes/clj-watson/issues/49) by improving the `-T` invocation to support short names, symbols for strings, and all the defaults.
* Address [#48](https://github.com/clj-holmes/clj-watson/issues/48) by updating all of the project dependencies, including DependencyCheck to 9.0.8.
* Address [#47](https://github.com/clj-holmes/clj-watson/issues/47) by printing out the optional properties read from the `clj-watson.properties` file.
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ project's `deps.edn` file or in your user `deps.edn` file
;; in :aliases
:clj-watson {:replace-deps
{io.github.clj-holmes/clj-watson
{:git/tag "v5.0.1" :git/sha "d1ec6e5"}}
{:git/tag "v5.1.0" :git/sha "151ca1d"}}
:main-opts ["-m" "clj-watson.cli" "scan"]}
```

Expand Down Expand Up @@ -202,14 +202,14 @@ directly via the Clojure CLI, by specifying `clj-watson` as a dependency
via `-Sdeps`:

```bash
clojure -Sdeps '{:deps {io.github.clj-holmes/clj-watson {:git/tag "v5.0.1" :git/sha "d1ec6e5"}}}' -M -m clj-watson.cli scan -p deps.edn
clojure -Sdeps '{:deps {io.github.clj-holmes/clj-watson {:git/tag "v5.1.0" :git/sha "151ca1d"}}}' -M -m clj-watson.cli scan -p deps.edn
```
Or you can just add it to your `deps.edn` file as an alias:

```clojure
{:deps {}
:aliases
{:clj-watson {:extra-deps {io.github.clj-holmes/clj-watson {:git/tag "v5.0.1" :git/sha "d1ec6e5"}}
{:clj-watson {:extra-deps {io.github.clj-holmes/clj-watson {:git/tag "v5.1.0" :git/sha "151ca1d"}}
:main-opts ["-m" "clj-watson.cli" "scan"]}}}
```

Expand Down
2 changes: 1 addition & 1 deletion deps.edn
Original file line number Diff line number Diff line change
Expand Up @@ -33,5 +33,5 @@
:main-opts ["-m" "kaocha.runner"]}
;; so we can run the recommended command from the README:
:clj-watson {:replace-deps {io.github.clj-holmes/clj-watson
{:git/tag "v5.0.1" :git/sha "d1ec6e5"}}
{:git/tag "v5.1.0" :git/sha "151ca1d"}}
:main-opts ["-m" "clj-watson.cli" "scan"]}}}
2 changes: 1 addition & 1 deletion src/clj_watson/diplomat/dependency.clj
Original file line number Diff line number Diff line change
Expand Up @@ -46,5 +46,5 @@
(comment
(get-latest-version! 'org.clojure/clojure {:mvn/repos maven/standard-repos})
(get-latest-version! 'io.github.clj-holmes/clj-watson {:mvn/repos maven/standard-repos})
(resolve-dependency! {:deps {'io.github.clj-holmes/clj-watson {:git/tag "v5.0.1" :git/sha "d1ec6e5"}}
(resolve-dependency! {:deps {'io.github.clj-holmes/clj-watson {:git/tag "v5.1.0" :git/sha "151ca1d"}}
:mvn/repos maven/standard-repos}))

0 comments on commit 307bffb

Please sign in to comment.