Skip to content

Commit

Permalink
Prepared release 0.5.2
Browse files Browse the repository at this point in the history
  • Loading branch information
lefou committed Oct 17, 2019
1 parent 6a19be4 commit 7f9c31b
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 8 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.5.1/0.5.1-assembly, and save it as
https://github.com/lihaoyi/mill/releases/download/0.5.2/0.5.2-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.5.1/0.5.1 > /usr/local/bin/mill && sudo chmod +x /usr/local/bin/mill
sudo curl -L https://github.com/lihaoyi/mill/releases/download/0.5.2/0.5.2 > /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.5.1/0.5.1 > mill && chmod +x mill
curl -L https://github.com/lihaoyi/mill/releases/download/0.5.2/0.5.2 > mill && chmod +x mill
```

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

## Changelog

### master


### 0.5.2 - 2019-10-17

- `TestModule`: new `testCached`target, which only re-runs tests after relevant changes
- `TestModule.test`: fixed issue when stacktraces have no filename info
- `Dependency/updates`: fixed issue with reading stale dependencies
- `GenIdea/idea`: no longer shared output directories between mill and IntelliJ IDEA
- support for Dotty >= 0.18.1
- Fixed backwards compatibility of mill wrapper script
- Mill now support the Build Server Protocol 2.0 (BSP) and can act as a build server
- bloop: removed semanticDB dependency
- Documentation updates

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


### 0.5.1 - 2019-09-05
Expand Down

0 comments on commit 7f9c31b

Please sign in to comment.