summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--docs/pages/1 - Intro to Mill.md2
-rw-r--r--readme.md10
2 files changed, 9 insertions, 3 deletions
diff --git a/docs/pages/1 - Intro to Mill.md b/docs/pages/1 - Intro to Mill.md
index 4067588a..32c520af 100644
--- a/docs/pages/1 - Intro to Mill.md
+++ b/docs/pages/1 - Intro to Mill.md
@@ -59,7 +59,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.0/0.2.0) > /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.1/0.2.1) > /usr/local/bin/mill && chmod +x /usr/local/bin/mill'
```
### Development Releases
diff --git a/readme.md b/readme.md
index 7c02ca52..525c6bca 100644
--- a/readme.md
+++ b/readme.md
@@ -19,7 +19,13 @@ If you want to use Mill in your own projects, check out our documentation:
The remainder of this readme is developer-documentation targeted at people who
wish to work on Mill's own codebase. The developer docs assume you have read
-through the user-facing documentation linked above.
+through the user-facing documentation linked above. It's also worth spending a
+few minutes reading the following blog posts to get a sense of Mill's design &
+motivation:
+
+- [So, what's wrong with SBT?](http://www.lihaoyi.com/post/SowhatswrongwithSBT.html)
+- [Build Tools as Pure Functional Programs](http://www.lihaoyi.com/post/BuildToolsasPureFunctionalPrograms.html)
+- [Mill: Better Scala Builds](http://www.lihaoyi.com/post/MillBetterScalaBuilds.html)
## How to build and test
@@ -145,7 +151,7 @@ optimizer without classpath conflicts.
## Changelog
-### master
+### 0.2.1
- Preserve caches when transitioning between `-i`/`--interactive` and the
fast client/server mode ([329](https://github.com/lihaoyi/mill/issues/329))