From 107507ceb487529370d987256a4996cd07450323 Mon Sep 17 00:00:00 2001 From: Rahul Muttineni Date: Sun, 26 Aug 2018 12:07:07 +0530 Subject: [PATCH] Release 0.8.6b2 --- README.md | 4 ++-- .../0-eta-user-guide/2-basics/0-quick-start.md | 2 +- .../4-advanced-features/2-cabal-project-file.md | 2 +- .../5-command-reference/0-global-flags.md | 2 +- .../1-basic-configuration/2-plugin-basics.md | 4 ++-- .../1-global-configuration.md | 14 +++++++------- etlas | 2 +- 7 files changed, 15 insertions(+), 15 deletions(-) diff --git a/README.md b/README.md index f94d35ac..e4a50493 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.6b1 +**Stable Build:** 0.8.6b2 -**Latest Build:** 0.8.6b1 +**Latest Build:** 0.8.6b2 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 25dbc075..d8558833 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.6b1' + version = '0.8.6b2' 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 ca16925e..4c98387a 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.6b1` +- `0.8.6b2` ### 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 53fe1472..9eea0140 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.6b1 update +etlas --select-eta=0.8.6b2 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 5d5a9c9b..ed49252f 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.6b1' + version = '0.8.6b2' etlasVersion = '1.5.0.0' } ``` -This will tell Gradle to install **Etlas v1.5.0.0** and **Eta v0.8.6b1** and build the project using those executables. +This will tell Gradle to install **Etlas v1.5.0.0** and **Eta v0.8.6b2** 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 239545c5..9d34b631 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.6b1' + version = '0.8.6b2' } ``` @@ -117,35 +117,35 @@ eta { ```groovy eta { - version = '0.8.6b1' + version = '0.8.6b2' etlasVersion = '1.5.0.0' } ``` -The plugin will download and cache **Eta v0.8.6b1** and **Etlas v1.5.0.0**. +The plugin will download and cache **Eta v0.8.6b2** and **Etlas v1.5.0.0**. ### Example 2 ```groovy eta { - version = '0.8.6b1' + version = '0.8.6b2' etlasVersion = '1.5.0.0' preInstallDependencies = true } ``` -The plugin will download and cache **Eta v0.8.6b1** 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.6b2** 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.6b1' + version = '0.8.6b2' useSystemEtlas = true } ``` -The plugin will download and cache **Eta v0.8.6b1** and use the Etlas it can find on the `PATH`. +The plugin will download and cache **Eta v0.8.6b2** and use the Etlas it can find on the `PATH`. ### Example 4 diff --git a/etlas b/etlas index 2dd992a7..e1359f4d 160000 --- a/etlas +++ b/etlas @@ -1 +1 @@ -Subproject commit 2dd992a7b31257a8da93069558533138b300d465 +Subproject commit e1359f4d1d21b42379170e2d0f82f9b03db20feb