diff --git a/README.md b/README.md index 15e3852e..b11b7e5f 100644 --- a/README.md +++ b/README.md @@ -25,10 +25,10 @@ Visit [eta-lang.org](https://eta-lang.org) for instructions on getting started. **Version:** 0.8.6 -**Stable Build:** 0.8.6b4 +**Stable Build:** 0.8.6b5 -**Latest Build:** 0.8.6b4 +**Latest Build:** 0.8.6b5 Subscribe to the [Eta-Discuss](https://groups.google.com/forum/#!forum/eta-discuss) for updates. diff --git a/docs/0-user-guides/0-eta-user-guide/2-basics/0-quick-start.md b/docs/0-user-guides/0-eta-user-guide/2-basics/0-quick-start.md index 0780a454..9e61b59a 100644 --- a/docs/0-user-guides/0-eta-user-guide/2-basics/0-quick-start.md +++ b/docs/0-user-guides/0-eta-user-guide/2-basics/0-quick-start.md @@ -35,7 +35,7 @@ plugins { } eta { - version = '0.8.6b4' + version = '0.8.6b5' etlasVersion = '1.5.0.0' } diff --git a/docs/0-user-guides/1-etlas-user-guide/4-advanced-features/2-cabal-project-file.md b/docs/0-user-guides/1-etlas-user-guide/4-advanced-features/2-cabal-project-file.md index a56ceb8f..8f42b203 100644 --- a/docs/0-user-guides/1-etlas-user-guide/4-advanced-features/2-cabal-project-file.md +++ b/docs/0-user-guides/1-etlas-user-guide/4-advanced-features/2-cabal-project-file.md @@ -36,7 +36,7 @@ An Eta version is of the form `[version]b[nonnegative-integer]`. **Examples** -- `0.8.6b4` +- `0.8.6b5` ### filepath-glob diff --git a/docs/0-user-guides/1-etlas-user-guide/5-command-reference/0-global-flags.md b/docs/0-user-guides/1-etlas-user-guide/5-command-reference/0-global-flags.md index d0688033..b24c80f1 100644 --- a/docs/0-user-guides/1-etlas-user-guide/5-command-reference/0-global-flags.md +++ b/docs/0-user-guides/1-etlas-user-guide/5-command-reference/0-global-flags.md @@ -32,7 +32,7 @@ etlas --numeric-version ### Example 2 ```sh -etlas --select-eta=0.8.6b4 update +etlas --select-eta=0.8.6b5 update ``` ## Periodic Behavior diff --git a/docs/0-user-guides/2-gradle-user-guide/1-basic-configuration/2-plugin-basics.md b/docs/0-user-guides/2-gradle-user-guide/1-basic-configuration/2-plugin-basics.md index 8d6c432d..884cf9e5 100644 --- a/docs/0-user-guides/2-gradle-user-guide/1-basic-configuration/2-plugin-basics.md +++ b/docs/0-user-guides/2-gradle-user-guide/1-basic-configuration/2-plugin-basics.md @@ -30,12 +30,12 @@ Note that this configuration will apply to **all** projects in your Gradle build ```groovy eta { - version = '0.8.6b4' + version = '0.8.6b5' etlasVersion = '1.5.0.0' } ``` -This will tell Gradle to install **Etlas v1.5.0.0** and **Eta v0.8.6b4** and build the project using those executables. +This will tell Gradle to install **Etlas v1.5.0.0** and **Eta v0.8.6b5** and build the project using those executables. **NOTE**: You can only use the `eta` extension block in the root project. If you have a single `build.gradle` file in your project with no subfolders containing `build.gradle` files, you are building the root project. diff --git a/docs/0-user-guides/2-gradle-user-guide/2-advanced-configuration/1-global-configuration.md b/docs/0-user-guides/2-gradle-user-guide/2-advanced-configuration/1-global-configuration.md index 8d003c7d..d45e5588 100644 --- a/docs/0-user-guides/2-gradle-user-guide/2-advanced-configuration/1-global-configuration.md +++ b/docs/0-user-guides/2-gradle-user-guide/2-advanced-configuration/1-global-configuration.md @@ -31,7 +31,7 @@ This is typically used for production builds and ensures build reproducibility. ```groovy eta { - version = '0.8.6b4' + version = '0.8.6b5' } ``` @@ -117,35 +117,35 @@ eta { ```groovy eta { - version = '0.8.6b4' + version = '0.8.6b5' etlasVersion = '1.5.0.0' } ``` -The plugin will download and cache **Eta v0.8.6b4** and **Etlas v1.5.0.0**. +The plugin will download and cache **Eta v0.8.6b5** and **Etlas v1.5.0.0**. ### Example 2 ```groovy eta { - version = '0.8.6b4' + version = '0.8.6b5' etlasVersion = '1.5.0.0' preInstallDependencies = true } ``` -The plugin will download and cache **Eta v0.8.6b4** and **Etlas v1.5.0.0**. Moreover, it will install all the dependencies of your projects before executing any tasks. +The plugin will download and cache **Eta v0.8.6b5** and **Etlas v1.5.0.0**. Moreover, it will install all the dependencies of your projects before executing any tasks. ### Example 3 ```groovy eta { - version = '0.8.6b4' + version = '0.8.6b5' useSystemEtlas = true } ``` -The plugin will download and cache **Eta v0.8.6b4** and use the Etlas it can find on the `PATH`. +The plugin will download and cache **Eta v0.8.6b5** and use the Etlas it can find on the `PATH`. ### Example 4