Skip to content

Commit

Permalink
1.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
vemv committed Jan 22, 2022
1 parent 20c8b67 commit 5f0463c
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 8 deletions.
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ Eastwood can be run from the command line as a
Merge the following into your `project.clj` or `~/.lein/profiles.clj`:

```clojure
:plugins [[jonase/eastwood "1.1.1"]]
:plugins [[jonase/eastwood "1.2.0"]]
```

To run Eastwood with the default set of lint warnings on all of the
Expand All @@ -60,7 +60,7 @@ If you're using `deps.edn`, you can set Eastwood options in an edn map, like thi
"eastwood.lint"
;; Any Eastwood options can be passed here as edn:
{}]
:extra-deps {jonase/eastwood {:mvn/version "1.1.1"}}}}}
:extra-deps {jonase/eastwood {:mvn/version "1.2.0"}}}}}

```
to your `deps.edn`, and you should then be able to run Eastwood as
Expand Down Expand Up @@ -421,7 +421,7 @@ If you use Leiningen, merge this into your project's `project.clj`
file first:

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

If you use a different build tool, you will need to add the dependency
Expand Down Expand Up @@ -564,7 +564,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.1.1"]]
{:user {:plugins [[jonase/eastwood "1.2.0"]]
:eastwood {:exclude-linters [:unlimited-use]
:debug [:time]}
}}
Expand Down Expand Up @@ -2202,7 +2202,7 @@ your local Maven repository:
$ cd path/to/eastwood
$ lein with-profile -user,-dev,+eastwood-plugin install

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

Expand Down
6 changes: 6 additions & 0 deletions changes.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
## Changes from 1.1.1 to 1.2.0

#### New

* Compatibility with the Clojure [1.11.0-alpha4](https://clojure.org/releases/devchangelog#v1.11.0-alpha4), which has some news since alpha3.

## Changes from 1.1.0 to 1.1.1

#### New
Expand Down
2 changes: 1 addition & 1 deletion doc/README-creating-new-release.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ Commit all of those changes.

Tag it with a version tag, e.g.:

% git tag -a v1.1.1 -m "1.1.1"
% git tag -a v1.2.0 -m "1.2.0"

'git push' by default does not push tags to the remote server. To
cause that to happen, use:
Expand Down
4 changes: 2 additions & 2 deletions resources/EASTWOOD_VERSION
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
:major 1
:minor 1
:patch 1
:minor 2
:patch 0
}

0 comments on commit 5f0463c

Please sign in to comment.