Skip to content

Commit

Permalink
0.1.2
Browse files Browse the repository at this point in the history
  • Loading branch information
lihaoyi committed Feb 25, 2018
1 parent 7b462e5 commit 0b0b1a6
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 1 deletion.
4 changes: 3 additions & 1 deletion docs/pages/1 - Intro to Mill.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ To get started, download Mill and install it into your system via the following
`curl`/`chmod` command:

```bash
sudo curl -L -o /usr/local/bin/mill https://github.com/lihaoyi/mill/releases/download/0.1.1/0.1.1 && sudo chmod +x /usr/local/bin/mill
sudo curl -L -o /usr/local/bin/mill https://github.com/lihaoyi/mill/releases/download/0.1.2/0.1.2 && sudo chmod +x /usr/local/bin/mill
```

More recent, unstable versions of Mill are also
Expand Down Expand Up @@ -69,6 +69,8 @@ $ mill foo.compile # compile sources into classfiles

$ mill foo.run # run the main method, if any

$ mill foo.launcher # prepares a foo/dest/run to run your code outside Mill

$ mill foo.jar # bundle the classfiles into a jar

$ mill foo.assembly # bundle classfiles and all dependencies into a jar
Expand Down
14 changes: 14 additions & 0 deletions readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -382,6 +382,20 @@ see what's going on, we should expect them to contribute code!

## Changelog

### 0.1.2

- Mill now keeps a long-lived work-daemon around in between commands; this
should improve performance of things like `compile` which benefit from the
warm JVM. You can use `-i`/`--interactive` for interactive consoles/REPLs and
for running commands without the daemon

- Implemented the `ScalaModule#launcher` target for easily creating command-line
launchers you can run outside of Mill

- `ScalaModule#docJar` no longer fails if you don't have `scala-compiler` on
classpath

- Support for multiple `testFrameworks` in a test module.

### 0.1.1

Expand Down

0 comments on commit 0b0b1a6

Please sign in to comment.