Skip to content

Commit

Permalink
Release/v0.2.1 (#26)
Browse files Browse the repository at this point in the history
  • Loading branch information
furkan3ayraktar authored Nov 19, 2018
1 parent d29b3d1 commit fe5e9ec
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion project.clj
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
(defproject polylith/lein-polylith "0.2.0"
(defproject polylith/lein-polylith "0.2.1"
:description "Polylith - a component based architecture, by Joakim Tengstrand."
:url "https://github.com/tengstrand/lein-polylith"
:license {:name "Eclipse Public License",
Expand Down
8 changes: 4 additions & 4 deletions readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -54,10 +54,10 @@ The next thing to do is to add the Polylith plugin to `~/.lein/profiles.clj`. Af
This ensures that the Polylith plugin can be called from anywhere in the file system and not just from the *workspace root* where the *project.clj* file with the Polylith declaration resides:
```clojure
...
:plugins [[polylith/lein-polylith "0.2.0"]]
:plugins [[polylith/lein-polylith "0.2.1"]]
```

If called from the workspace root then it will use *0.2.0* in this case, otherwise it will use the latest version of the plugin.
If called from the workspace root then it will use *0.2.1* in this case, otherwise it will use the latest version of the plugin.

### Latest version
[![Clojars Project](https://clojars.org/polylith/lein-polylith/latest-version.svg)](http://clojars.org/polylith/lein-polylith)
Expand Down Expand Up @@ -160,7 +160,7 @@ The [Leiningen](https://leiningen.org) *project.clj* file defines which version
```clojure
(defproject se.example/example "1.0"
:description "A Polylith workspace."
:plugins [[polylith/lein-polylith "0.2.0"]]
:plugins [[polylith/lein-polylith "0.2.1"]]
:polylith {:top-namespace "se.example"
:clojure-version "1.9.0"})
```
Expand Down Expand Up @@ -1485,7 +1485,7 @@ $ lein polylith
```

```
Polylith 0.2.0 (2018-10-27) - https://github.com/tengstrand/lein-polylith
Polylith 0.2.1 (2018-11-19) - https://github.com/tengstrand/lein-polylith

lein polylith CMD [ARGS] - where CMD [ARGS] are:

Expand Down
4 changes: 2 additions & 2 deletions src/leiningen/polylith/version.clj
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
(ns leiningen.polylith.version)

(def version "0.2.0")
(def date "2018-10-27")
(def version "0.2.1")
(def date "2018-11-19")

0 comments on commit fe5e9ec

Please sign in to comment.