Skip to content

Commit

Permalink
Prepared release 0.9.4
Browse files Browse the repository at this point in the history
  • Loading branch information
lefou committed Dec 21, 2020
1 parent 28f54bc commit 32af9e3
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 7 deletions.
10 changes: 5 additions & 5 deletions docs/pages/1 - Intro to Mill.md
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ pkg install mill
### Windows

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

If you're using [Scoop](https://scoop.sh) you can install Mill via
Expand Down Expand Up @@ -88,7 +88,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.9.3/0.9.3 > /usr/local/bin/mill && sudo chmod +x /usr/local/bin/mill
sudo curl -L https://github.com/lihaoyi/mill/releases/download/0.9.4/0.9.4 > /usr/local/bin/mill && sudo chmod +x /usr/local/bin/mill
```


Expand All @@ -98,7 +98,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.9.3/0.9.3 > mill && chmod +x mill
curl -L https://github.com/lihaoyi/mill/releases/download/0.9.4/0.9.4 > mill && chmod +x mill
```

Now, anyone who wants to work with the project can simply use the `./mill`
Expand Down Expand Up @@ -178,7 +178,7 @@ out/

You can download an example project with this layout here:

- [Example 1](https://github.com/lihaoyi/mill/releases/download/0.9.3/0.9.3-example-1.zip)
- [Example 1](https://github.com/lihaoyi/mill/releases/download/0.9.4/0.9.4-example-1.zip)

The source code for this module would live in the `foo/src/` folder, matching
the name you assigned to the module. Output for this module (compiled files,
Expand Down Expand Up @@ -839,7 +839,7 @@ by overriding `artifactName` in the module you want to publish.
You can download an example project with this layout here:
- [Example 2](https://github.com/lihaoyi/mill/releases/download/0.9.3/0.9.3-example-2.zip)
- [Example 2](https://github.com/lihaoyi/mill/releases/download/0.9.4/0.9.4-example-2.zip)
Which you can then publish using the `mill foo.publish` command, which takes
your sonatype credentials (e.g. `lihaoyi:foobarbaz`) and GPG password as inputs:
Expand Down
16 changes: 14 additions & 2 deletions readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -192,8 +192,20 @@ corresponding version of Mill.
### master

*For details refer to
[milestone after 0.8.0](https://github.com/lihaoyi/mill/milestone/45?closed=1)
and the [list of commits](https://github.com/lihaoyi/mill/compare/0.9.3...master).*
[milestone after 0.8.0](https://github.com/lihaoyi/mill/milestone/46?closed=1)
and the [list of commits](https://github.com/lihaoyi/mill/compare/0.9.4...master).*


### 0.9.4 - 2020-12-21

* Implemented more BSP protocol commands and fixed some glitches with IntelliJ
* Various fixes and improvements
* Various version bumps

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


### 0.9.3 - 2020-11-26

Expand Down

0 comments on commit 32af9e3

Please sign in to comment.