Skip to content

Commit

Permalink
Release 0.8.6b2
Browse files Browse the repository at this point in the history
  • Loading branch information
rahulmutt committed Aug 26, 2018
1 parent ff5654d commit 107507c
Show file tree
Hide file tree
Showing 7 changed files with 15 additions and 15 deletions.
4 changes: 2 additions & 2 deletions README.md
Expand Up @@ -25,10 +25,10 @@ Visit [eta-lang.org](https://eta-lang.org) for instructions on getting started.
<!-- @BUILD_NUMBER@ -->
**Version:** 0.8.6

**Stable Build:** 0.8.6b1
**Stable Build:** 0.8.6b2

<!-- @BUILD_NUMBER@ -->
**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.
Expand Down
Expand Up @@ -35,7 +35,7 @@ plugins {
}
eta {
version = '0.8.6b1'
version = '0.8.6b2'
etlasVersion = '1.5.0.0'
}
Expand Down
Expand Up @@ -36,7 +36,7 @@ An Eta version is of the form `[version]b[nonnegative-integer]`.

**Examples**

- `0.8.6b1`
- `0.8.6b2`

### filepath-glob

Expand Down
Expand Up @@ -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
Expand Down
Expand Up @@ -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.

Expand Down
Expand Up @@ -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'
}
```

Expand Down Expand Up @@ -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

Expand Down
2 changes: 1 addition & 1 deletion etlas

0 comments on commit 107507c

Please sign in to comment.