From 32af9e32ea26374b29b4f62a0948676191a24d77 Mon Sep 17 00:00:00 2001 From: Tobias Roeser Date: Mon, 21 Dec 2020 10:25:33 +0100 Subject: [PATCH] Prepared release 0.9.4 --- docs/pages/1 - Intro to Mill.md | 10 +++++----- readme.md | 16 ++++++++++++++-- 2 files changed, 19 insertions(+), 7 deletions(-) diff --git a/docs/pages/1 - Intro to Mill.md b/docs/pages/1 - Intro to Mill.md index c2db998054d..55e6545f33b 100644 --- a/docs/pages/1 - Intro to Mill.md +++ b/docs/pages/1 - Intro to Mill.md @@ -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 @@ -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 ``` @@ -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` @@ -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, @@ -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: diff --git a/readme.md b/readme.md index 98d6c18ebd5..54ebcef3d17 100644 --- a/readme.md +++ b/readme.md @@ -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