Skip to content

Commit

Permalink
Prepared mill 0.6.1
Browse files Browse the repository at this point in the history
  • Loading branch information
lefou committed Feb 24, 2020
1 parent 88cef43 commit 5ea357e
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 5 deletions.
6 changes: 3 additions & 3 deletions docs/pages/1 - Intro to Mill.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ pkg install mill
### Windows

To get started, download Mill from:
https://github.com/lihaoyi/mill/releases/download/0.6.0/0.6.0-assembly, and save
https://github.com/lihaoyi/mill/releases/download/0.6.1/0.6.1-assembly, and save
it as `mill.bat`.

If you're using [Scoop](https://scoop.sh) you can install Mill via
Expand Down Expand Up @@ -81,7 +81,7 @@ To get started, download Mill and install it into your system via the following
`curl`/`chmod` command:

```bash
sudo curl -L https://github.com/lihaoyi/mill/releases/download/0.6.0/0.6.0 > /usr/local/bin/mill && sudo chmod +x /usr/local/bin/mill
sudo curl -L https://github.com/lihaoyi/mill/releases/download/0.6.1/0.6.1 > /usr/local/bin/mill && sudo chmod +x /usr/local/bin/mill
```

### Bootstrap Scripts (Linux/OS-X Only)
Expand All @@ -90,7 +90,7 @@ If you are using Mill in a codebase, you can commit the bootstrap launcher as a
`./mill` script in the project folder:

```bash
curl -L https://github.com/lihaoyi/mill/releases/download/0.6.0/0.6.0 > mill && chmod +x mill
curl -L https://github.com/lihaoyi/mill/releases/download/0.6.1/0.6.1 > mill && chmod +x mill
```

Now, anyone who wants to work with the project can simply use the `./mill`
Expand Down
21 changes: 19 additions & 2 deletions readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -170,8 +170,25 @@ corresponding version of Mill.
### master

*For details refer to
[milestone after 0.6.0](https://github.com/lihaoyi/mill/milestone/35?closed=1)
and the [list of commits](https://github.com/lihaoyi/mill/compare/0.6.0...master).*
[milestone after 0.6.1](https://github.com/lihaoyi/mill/milestone/36?closed=1)
and the [list of commits](https://github.com/lihaoyi/mill/compare/0.6.1...master).*

###

- Bugfix: Mill now no longer leaks open files (version bump to uPickle 1.0.0)
- New `--version` option
- Added Support for Scala.js 1.0.0+
- Added Support for Scala Native 0.4.0-M2
- `JavaModule`: Enhanced `ivyDepsTree` to optionally include compile-time and runtime-time dependencies
- `JavaModule`: `allSourceFiles` no longer include Scala sources
- `JavaModule`: assembly supports configurable separator when merging resources
- `ScoverageModule`: respect `unmanagedClasspath`, added console reporter
- `ScalaPBModule`: added more configuration options
- Bloop: Fixed inconsistent working directory when executing tests via bloop (forces `-Duser.dir` when generating bloop config)

*For details refer to
[milestone 0.6.1](https://github.com/lihaoyi/mill/milestone/35?closed=1)
and the [list of commits](https://github.com/lihaoyi/mill/compare/0.6.0...0.6.1).*

### 0.6.0 - 2020-1-20

Expand Down

0 comments on commit 5ea357e

Please sign in to comment.