Skip to content

Commit

Permalink
Release 0.4.3
Browse files Browse the repository at this point in the history
  • Loading branch information
vemv committed May 23, 2021
1 parent 3f05eb9 commit 2008d78
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 12 deletions.
4 changes: 2 additions & 2 deletions README.md
Expand Up @@ -42,7 +42,7 @@ released to fix that problem.
Merge the following into your `$HOME/.lein/profiles.clj` file:

```clojure
{:user {:plugins [[jonase/eastwood "0.4.2"]] }}
{:user {:plugins [[jonase/eastwood "0.4.3"]]}}
```

To run Eastwood with the default set of lint warnings on all of the
Expand Down Expand Up @@ -445,7 +445,7 @@ If you use Leiningen, merge this into your project's `project.clj`
file first:

```clojure
:profiles {:dev {:dependencies [[jonase/eastwood "0.4.2" :exclusions [org.clojure/clojure]]]}}
:profiles {:dev {:dependencies [[jonase/eastwood "0.4.3" :exclusions [org.clojure/clojure]]]}}
```

If you use a different build tool, you will need to add the dependency
Expand Down
2 changes: 1 addition & 1 deletion changes.md
@@ -1,6 +1,6 @@
# Change log for Eastwood

## Changes from 0.4.1 to
## Changes from 0.4.1 to 0.4.3

#### New

Expand Down
9 changes: 2 additions & 7 deletions deps.edn
@@ -1,10 +1,5 @@
{:paths ["src" "lein-eastwood" "copied-deps" "resource" "resources"]
:deps {org.clojure/clojure {:mvn/version "1.8.0"}
:deps {org.clojure/clojure {:mvn/version "1.10.3"}
org.clojars.brenton/google-diff-match-patch {:mvn/version "0.1"}
org.ow2.asm/asm-all {:mvn/version "5.2"}}
:aliases {:eastwood {:main-opts ["-m" "eastwood.lint" "{:parallel?,:naive,:source-paths,[\"src\"]}"]}
:ancient {:main-opts ["-m" "deps-ancient.deps-ancient"]
:extra-deps {deps-ancient {:mvn/version "RELEASE"}}}
:deploy {:extra-deps {deps-deploy {:mvn/version "RELEASE"}}
:main-opts ["-m" "deps-deploy.deps-deploy" "deploy"
"target/eastwood-0.3.11.jar"]}}}
:aliases {:eastwood {:main-opts ["-m" "eastwood.lint"]}}}
1 change: 1 addition & 0 deletions doc/README-creating-new-release.md
Expand Up @@ -8,6 +8,7 @@ Places where version number should be updated:

* project.clj just after jonase/eastwood
* README.md in install instructions, and instructions for developers
* changes.md (header)
* src/eastwood/lint.clj var *eastwood-version*
* (happens automatically)
* src/leiningen/eastwood.clj var eastwood-version-string
Expand Down
4 changes: 2 additions & 2 deletions project.clj
Expand Up @@ -3,14 +3,14 @@

(def plugin-source-path "lein-eastwood")

(defproject jonase/eastwood "0.4.2"
(defproject jonase/eastwood "0.4.3"
:description "A Clojure lint tool"
:url "https://github.com/jonase/eastwood"
:license {:name "Eclipse Public License"
:url "http://www.eclipse.org/legal/epl-v10.html"}
:source-paths ~(cond-> ["src" "copied-deps"]
eval-in-leiningen? (conj plugin-source-path))
:dependencies [[org.clojure/clojure "1.10.2" :scope "provided"]
:dependencies [[org.clojure/clojure "1.10.3" :scope "provided"]
[org.clojars.brenton/google-diff-match-patch "0.1"]
[org.ow2.asm/asm-all "5.2"]]
:deploy-repositories [["clojars" {:url "https://repo.clojars.org"
Expand Down

0 comments on commit 2008d78

Please sign in to comment.