Skip to content

Commit

Permalink
1.2.2
Browse files Browse the repository at this point in the history
  • Loading branch information
vemv committed Jan 24, 2022
1 parent 79caf5c commit 6c57aaa
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 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.2.1"]]
:plugins [[jonase/eastwood "1.2.2"]]
```

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.2.1"}}}}}
:extra-deps {jonase/eastwood {:mvn/version "1.2.2"}}}}}

```
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.2.1" :exclusions [org.clojure/clojure]]]}}
:profiles {:dev {:dependencies [[jonase/eastwood "1.2.2" :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.2.1"]]
{:user {:plugins [[jonase/eastwood "1.2.2"]]
: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.2.1"]` to
Then add `[jonase/eastwood "1.2.2"]` to
your `:plugins` vector in your `:user` profile, perhaps in your
`$HOME/.lein/profiles.clj` file.

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.2.1 -m "1.2.1"
% git tag -a v1.2.2 -m "1.2.2"

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

0 comments on commit 6c57aaa

Please sign in to comment.