Skip to content

Commit

Permalink
Release: Version 0.1.0-alpha8 (#63)
Browse files Browse the repository at this point in the history
  • Loading branch information
furkan3ayraktar authored Dec 2, 2020
1 parent f8e5cbc commit 4ec8422
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 10 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,5 @@
(def ws-schema-version {:breaking 0
:non-breaking 0})

(def version "0.1.0-alpha7")
(def date "2020-12-01")
(def version "0.1.0-alpha8")
(def date "2020-12-02")
2 changes: 1 addition & 1 deletion doc/commands.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ poly help
```

```
Poly 0.1.0-alpha7 (2020-12-01) - https://github.com/polyfy/polylith
Poly 0.1.0-alpha8 (2020-12-02) - https://github.com/polyfy/polylith
poly CMD [ARGS] - where CMD [ARGS] are:
Expand Down
14 changes: 7 additions & 7 deletions readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ name and email.
To install the `poly` command on Linux:

- Download the [latest release](https://github.com/polyfy/polylith/releases/latest) of the `poly` jar,
e.g. `poly-0.1.0-alpha7.jar`.
e.g. `poly-0.1.0-alpha8.jar`.
- Create a directory, e.g. `/usr/local/polylith` and copy the jar file to that directory.
- Create a file with the name `poly` and put it in e.g. `/usr/local/bin` with this content:
```
Expand All @@ -149,7 +149,7 @@ while [ "$1" != "" ] ; do
shift
done
exec "/usr/bin/java" "-jar" "/usr/local/polylith/poly-0.1.0-alpha7.jar" $ARGS
exec "/usr/bin/java" "-jar" "/usr/local/polylith/poly-0.1.0-alpha8.jar" $ARGS
```
- Make sure that:
- you point to the correct jar file.
Expand Down Expand Up @@ -193,13 +193,13 @@ Set-ExecutionPolicy -Scope Process -ExecutionPolicy Bypass
To install the `poly` command on Windows:

- Download the [latest release](https://github.com/polyfy/polylith/releases/latest) of the `poly` jar,
e.g. `poly-0.1.0-alpha7.jar`.
e.g. `poly-0.1.0-alpha8.jar`.
- Create the `Polylith` directory somewhere on your machine, e.g.
`C:\Program Files\Polylith` and copy the jar file to that directory.
- Create the file `poly.bat` with this content (make sure you point to the jar):
```sh
@echo off
start /wait /b java -jar "C:\Program Files\Polylith\poly-0.1.0-alpha7.jar" %*
start /wait /b java -jar "C:\Program Files\Polylith\poly-0.1.0-alpha8.jar" %*
```
- Add `C:\Program Files\Polylith` to the Windows `PATH` variable.

Expand All @@ -218,7 +218,7 @@ To use it this way, add one of the following aliases to the `:aliases` section i
{
...
:aliases {:poly {:extra-deps {polylith/clj-poly
{:mvn/version "0.1.0-alpha7"}}
{:mvn/version "0.1.0-alpha8"}}
:main-opts ["-m" "polylith.clj.core.poly-cli.core"]}}
...
}
Expand Down Expand Up @@ -250,7 +250,7 @@ clj -M:poly info
Similarly, you can use other artifacts from this repository, `clj-api` or `clj-poly-migrator` as dependencies. For example, in order to add `clj-api` as a dependency, add one of the following to your `:deps` section in your `deps.edn` file:

```clojure
polylith/clj-api {:mvn/version "0.1.0-alpha7"}
polylith/clj-api {:mvn/version "0.1.0-alpha8"}
```
or
```clojure
Expand Down Expand Up @@ -2428,7 +2428,7 @@ poly ws get:settings
:user-config-file "/Users/tengstrand/.polylith/config.edn",
:user-home "/Users/tengstrand",
:vcs "git",
:version "0.1.0-alpha7",
:version "0.1.0-alpha8",
:ws-schema-version {:breaking 0, :non-breaking 0}}
```
Expand Down

0 comments on commit 4ec8422

Please sign in to comment.