Skip to content

Commit

Permalink
Release v0.8.6b5
Browse files Browse the repository at this point in the history
  • Loading branch information
rahulmutt committed Feb 12, 2019
1 parent ab99bf0 commit 8225414
Show file tree
Hide file tree
Showing 6 changed files with 14 additions and 14 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.6b4
**Stable Build:** 0.8.6b5

<!-- @BUILD_NUMBER@ -->
**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.
Expand Down
Expand Up @@ -35,7 +35,7 @@ plugins {
}
eta {
version = '0.8.6b4'
version = '0.8.6b5'
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.6b4`
- `0.8.6b5`

### filepath-glob

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

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

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

Expand Down

0 comments on commit 8225414

Please sign in to comment.