summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLi Haoyi <haoyi.sg@gmail.com>2018-08-27 20:38:46 +0800
committerLi Haoyi <haoyi.sg@gmail.com>2018-08-27 20:38:46 +0800
commited95f2dd558a82f6b84f7f0dc3d80b3038683950 (patch)
tree7b25ad6829a2d3ec97ac8df91dc46174e2e00488
parent947485ad217adbf7079d2669a60fa2380add71a4 (diff)
downloadmill-0.2.7.tar.gz
mill-0.2.7.tar.bz2
mill-0.2.7.zip
0.2.70.2.7
-rw-r--r--docs/pages/1 - Intro to Mill.md4
-rw-r--r--readme.md19
2 files changed, 21 insertions, 2 deletions
diff --git a/docs/pages/1 - Intro to Mill.md b/docs/pages/1 - Intro to Mill.md
index 48c2ac0f..82f78527 100644
--- a/docs/pages/1 - Intro to Mill.md
+++ b/docs/pages/1 - Intro to Mill.md
@@ -36,7 +36,7 @@ pacaur -S mill
### Windows
To get started, download Mill from:
-https://github.com/lihaoyi/mill/releases/download/0.2.6/0.2.6, and save it as
+https://github.com/lihaoyi/mill/releases/download/0.2.7/0.2.7, and save it as
`mill.bat`.
If you're using [Scoop](https://scoop.sh) you can install Mill via
@@ -73,7 +73,7 @@ To get started, download Mill and install it into your system via the following
`curl`/`chmod` command:
```bash
-sudo sh -c '(echo "#!/usr/bin/env sh" && curl -L https://github.com/lihaoyi/mill/releases/download/0.2.6/0.2.6) > /usr/local/bin/mill && chmod +x /usr/local/bin/mill'
+sudo sh -c '(echo "#!/usr/bin/env sh" && curl -L https://github.com/lihaoyi/mill/releases/download/0.2.7/0.2.7) > /usr/local/bin/mill && chmod +x /usr/local/bin/mill'
```
### Development Releases
diff --git a/readme.md b/readme.md
index d943c31c..9640b8b3 100644
--- a/readme.md
+++ b/readme.md
@@ -151,6 +151,25 @@ optimizer without classpath conflicts.
## Changelog
+### 0.2.7
+
+- Add `visualizePlan` command
+
+- Basic build-info plugin in `mill-contrib-buildinfo`
+
+- ScalaPB integration in `mill-contrib-scalapblib`
+
+- Fixes for Twirl support, now in `mill-contrib-twirllib`
+
+- Support for building Dotty projects
+ [#397](https://github.com/lihaoyi/mill/pull/397)
+
+- Allow customization of `run`/`runBackground` working directory via
+ `forkWorkingDir`
+
+- Reduced executable size, improved incremental compilation in
+ [#414](https://github.com/lihaoyi/mill/pull/414)
+
### 0.2.6
- Improve incremental compilation to work with transitive module dependencies