summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLi Haoyi <haoyi.sg@gmail.com>2019-07-10 09:29:02 +0800
committerLi Haoyi <haoyi.sg@gmail.com>2019-07-10 09:29:02 +0800
commit52bb78b04c60cbe7532c0d79274f8ecc959afd93 (patch)
treee70f8d3d973448100afad428e5b0c3bfa340e25b
parentb70ea47e29d01fadad03c7768073ba0e279ca44b (diff)
downloadmill-52bb78b04c60cbe7532c0d79274f8ecc959afd93.tar.gz
mill-52bb78b04c60cbe7532c0d79274f8ecc959afd93.tar.bz2
mill-52bb78b04c60cbe7532c0d79274f8ecc959afd93.zip
tweak readme
-rw-r--r--docs/pages/1 - Intro to Mill.md32
1 files changed, 21 insertions, 11 deletions
diff --git a/docs/pages/1 - Intro to Mill.md b/docs/pages/1 - Intro to Mill.md
index 1b97393a..1942ba47 100644
--- a/docs/pages/1 - Intro to Mill.md
+++ b/docs/pages/1 - Intro to Mill.md
@@ -106,16 +106,9 @@ script, even if you installed it via other means. The `./mill` file has a
version number embedded within it, which you can update simply by editing the
script. Note this only works for versions 0.5.0 and above.
-### Development Releases
-
-In case you want to try out the latest features and improvements that are
-currently in master, unstable versions of Mill are
-[available](https://github.com/lihaoyi/mill/releases) as binaries named
-`#.#.#-n-hash` linked to the latest tag.
-Installing the latest unstable release is recommended for bootstrapping mill.
-
-Come by our [Gitter Channel](https://gitter.im/lihaoyi/mill) if you want to ask
-questions or say hi!
+Bootstrap scripts are also useful for running Mill in CI, ensuring that your
+Jenkins/Travis/etc. box has the correct version of Mill present to
+build/compile/test your code.
## Getting Started
@@ -859,4 +852,21 @@ MILL_VERSION=0.5.0-3-4faefb ./mill __.compile
to override the Mill version manually. This takes precedence over the version
specified in `./mill` or `.mill-version`
-Note that both of these overrides only work for versions 0.5.0 and above. \ No newline at end of file
+Note that both of these overrides only work for versions 0.5.0 and above.
+
+
+### Development Releases
+
+In case you want to try out the latest features and improvements that are
+currently in master, unstable versions of Mill are
+[available](https://github.com/lihaoyi/mill/releases) as binaries named
+`#.#.#-n-hash` linked to the latest tag.
+Installing the latest unstable release is recommended for bootstrapping mill.
+
+The easiest way to use a development release is by updating the [Bootstrap
+Script](#bootstrap-scripts-linuxos-x-only), or
+[Overriding Mill Versions](#overriding-mill-versions) via an environment
+variable or `.mill-version` file.
+
+Come by our [Gitter Channel](https://gitter.im/lihaoyi/mill) if you want to ask
+questions or say hi! \ No newline at end of file