Skip to content

Commit

Permalink
Updated mill version in documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
lefou committed May 19, 2020
1 parent 08be5a7 commit 082c1fa
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 @@ -44,7 +44,7 @@ pkg install mill
### Windows

To get started, download Mill from:
https://github.com/lihaoyi/mill/releases/download/0.7.0/0.7.0-assembly, and save
https://github.com/lihaoyi/mill/releases/download/0.7.2/0.7.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.7.0/0.7.0 > /usr/local/bin/mill && sudo chmod +x /usr/local/bin/mill
sudo curl -L https://github.com/lihaoyi/mill/releases/download/0.7.2/0.7.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.7.0/0.7.0 > mill && chmod +x mill
curl -L https://github.com/lihaoyi/mill/releases/download/0.7.2/0.7.2 > mill && chmod +x mill
```

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

You can download an example project with this layout here:

- [Example 1](https://github.com/lihaoyi/mill/releases/download/0.7.0/0.7.0-example-1.zip)
- [Example 1](https://github.com/lihaoyi/mill/releases/download/0.7.2/0.7.2-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 @@ -813,7 +813,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.7.0/0.7.0-example-2.zip)
- [Example 2](https://github.com/lihaoyi/mill/releases/download/0.7.2/0.7.2-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 @@ -170,8 +170,20 @@ corresponding version of Mill.
### master

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

### 0.7.2 - 2020-05-19

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

### 0.7.1 - 2020-05-17

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

### 0.7.0 - 2020-05-15

Expand Down

0 comments on commit 082c1fa

Please sign in to comment.