Skip to content

Commit

Permalink
Prepared release 0.9.5, updated changelog and docs
Browse files Browse the repository at this point in the history
  • Loading branch information
lefou committed Jan 26, 2021
1 parent 9d1d6f8 commit 569e9eb
Show file tree
Hide file tree
Showing 2 changed files with 24 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.4/0.9.4-assembly, and save
https://github.com/lihaoyi/mill/releases/download/0.9.5/0.9.5-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.4/0.9.4 > /usr/local/bin/mill && sudo chmod +x /usr/local/bin/mill
sudo curl -L https://github.com/lihaoyi/mill/releases/download/0.9.5/0.9.5 > /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.4/0.9.4 > mill && chmod +x mill
curl -L https://github.com/lihaoyi/mill/releases/download/0.9.5/0.9.5 > 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.4/0.9.4-example-1.zip)
- [Example 1](https://github.com/lihaoyi/mill/releases/download/0.9.5/0.9.5-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.4/0.9.4-example-2.zip)
- [Example 2](https://github.com/lihaoyi/mill/releases/download/0.9.5/0.9.5-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
21 changes: 19 additions & 2 deletions readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -189,11 +189,28 @@ corresponding version of Mill.

## Changelog


### master

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



### 0.9.5 - 2021-01-26

* Updated zinc to 1.4.4
* Support for Scala Native 0.4.0
* Support for Scala.js ESModule (including Bloop support)
* Inner `Tests` traits in modules like `JavaModule`, `ScalaModule` and others now have unique
names (`JavaModuleTests`, `ScalaModuleTests`, etc), to allow for easier customization
* Various version bumps of dependencies
* CI now runs all tests, it did miss some before

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


### 0.9.4 - 2020-12-21
Expand Down

0 comments on commit 569e9eb

Please sign in to comment.