Skip to content

Commit

Permalink
1.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
vemv committed Jan 9, 2022
1 parent bb64fd1 commit 9470c67
Show file tree
Hide file tree
Showing 5 changed files with 19 additions and 9 deletions.
8 changes: 4 additions & 4 deletions README.md
Expand Up @@ -41,7 +41,7 @@ Eastwood can be run from the command line as a
Merge the following into your `$HOME/.lein/profiles.clj` file:

```clojure
{:user {:plugins [[jonase/eastwood "1.0.0"]]}}
{:user {:plugins [[jonase/eastwood "1.1.0"]]}}
```

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

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

If you use a different build tool, you will need to add the dependency
Expand Down Expand Up @@ -553,7 +553,7 @@ can be used to modify this merging behavior.
For example, if your user-wide `profiles.clj` file contains this:

```clojure
{:user {:plugins [[jonase/eastwood "1.0.0"]]
{:user {:plugins [[jonase/eastwood "1.1.0"]]
:eastwood {:exclude-linters [:unlimited-use]
:debug [:time]}
}}
Expand Down Expand Up @@ -2191,7 +2191,7 @@ your local Maven repository:
$ cd path/to/eastwood
$ lein with-profile -user,-dev,+eastwood-plugin install

Then add `[jonase/eastwood "1.0.0"]` to
Then add `[jonase/eastwood "1.1.0"]` to
your `:plugins` vector in your `:user` profile, perhaps in your
`$HOME/.lein/profiles.clj` file.

Expand Down
11 changes: 11 additions & 0 deletions changes.md
@@ -1,8 +1,19 @@
## Changes from 1.0.0 to 1.1.0

#### New

* Compatibility with the Clojure [1.11.0](https://clojure.org/releases/devchangelog#_release_1_11_0) series.

## Changes from 0.9.9 to 1.0.0

#### New

* tools.namespace integration: don't lint namespaces inferred from the `refresh-dirs` that were not specified as Eastwood config/arguments to be linted.
* Fail more clearly if/when loading tools.namespace `refresh-dirs`.
* Closes https://github.com/jonase/eastwood/issues/423

#### Bugfixes

* Fix false positive for `alt!!`
* Closes https://github.com/jonase/eastwood/issues/422

Expand Down
3 changes: 1 addition & 2 deletions deps.edn
@@ -1,5 +1,4 @@
{:paths ["src" "lein-eastwood" "copied-deps" "resource" "resources"]
: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"]}}}
org.ow2.asm/asm-all {:mvn/version "5.2"}}}
4 changes: 2 additions & 2 deletions doc/README-creating-new-release.md
@@ -1,7 +1,7 @@
Please don't create "snapshot" releases. Consider instead:

* can you / people perform `lein install` instead?
* can one gain confidence through better tests instead?
* can you / people perform `lein install`?
* can one gain confidence through better tests?

---

Expand Down
2 changes: 1 addition & 1 deletion resources/EASTWOOD_VERSION
@@ -1,5 +1,5 @@
{
:major 1
:minor 0
:minor 1
:patch 0
}

0 comments on commit 9470c67

Please sign in to comment.