Skip to content

Commit

Permalink
Released 1.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Sten Roger Sandvik committed Jun 14, 2017
1 parent f790378 commit 3e97249
Show file tree
Hide file tree
Showing 7 changed files with 14 additions and 13 deletions.
3 changes: 1 addition & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Changelog
=========

Version 1.2.0 *(unreleased)*
Version 1.2.0 *(2017-06-14)*
----------------------------

* Support using Gradle Build Cache with Yarn tasks (#205) _(mark-vieira)_
Expand All @@ -11,7 +11,6 @@ Version 1.2.0 *(unreleased)*
* Added execOverrides and ignoreExitValue on npmSetupTask (#196)
* Added gruntFile in grunt extension to use different file (#189)
* npm_* tasks using nodeModulesDir (##136) _(janario)_
* ...

Version 1.1.1 *(2017-01-16)*
----------------------------
Expand Down
4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
[![Build Status](https://travis-ci.org/srs/gradle-node-plugin.svg?branch=master)](https://travis-ci.org/srs/gradle-node-plugin)
[![Windows Build status](https://ci.appveyor.com/api/projects/status/06pg08c36mnes0w3?svg=true)](https://ci.appveyor.com/project/srs/gradle-node-plugin)
[![License](https://img.shields.io/github/license/srs/gradle-node-plugin.svg)](http:https://www.apache.org/licenses/LICENSE-2.0.html)
![Version](https://img.shields.io/badge/Version-1.1.1-orange.svg)
![Version](https://img.shields.io/badge/Version-1.2.0-orange.svg)

This plugin enabled you to use a lot of [NodeJS](https://nodejs.org)-based technologies as part of your
build without having NodeJS installed locally on your system. It integrates the following NodeJS-based system
Expand Down Expand Up @@ -40,6 +40,8 @@ issue to [GitHub Issues](https://github.com/srs/gradle-node-plugin/issues).

Here's the documentation for older releases of the plugin:

* [1.0.1](https://github.com/srs/gradle-node-plugin/blob/v1.0.1/README.md)
* [1.0.0](https://github.com/srs/gradle-node-plugin/blob/v1.0.0/README.md)
* [0.14](https://github.com/srs/gradle-node-plugin/blob/v0.14/README.md)
* [0.13](https://github.com/srs/gradle-node-plugin/blob/v0.13/README.md)
* [0.12](https://github.com/srs/gradle-node-plugin/blob/v0.12/README.md)
Expand Down
2 changes: 1 addition & 1 deletion docs/grunt.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ start using the plugin, add this into your `build.gradle` file (see [Installing]

```gradle
plugins {
id "com.moowork.grunt" version "1.1.1"
id "com.moowork.grunt" version "1.2.0"
}
```

Expand Down
2 changes: 1 addition & 1 deletion docs/gulp.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ To start using the plugin, add this into your `build.gradle` file (see [Installi

```gradle
plugins {
id "com.moowork.gulp" version "1.1.1"
id "com.moowork.gulp" version "1.2.0"
}
```

Expand Down
12 changes: 6 additions & 6 deletions docs/installing.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,17 +5,17 @@ in your `build.gradle` file:

```gradle
plugins {
id "com.moowork.node" version "1.1.1"
id "com.moowork.node" version "1.2.0"
}
```

If you want to install all of the node-plugins (which is pretty uncommon), then write this:

```gradle
plugins {
id "com.moowork.node" version "1.1.1"
id "com.moowork.grunt" version "1.1.1"
id "com.moowork.gulp" version "1.1.1"
id "com.moowork.node" version "1.2.0"
id "com.moowork.grunt" version "1.2.0"
id "com.moowork.gulp" version "1.2.0"
}
```

Expand All @@ -30,7 +30,7 @@ buildscript {
}
dependencies {
classpath "com.moowork.gradle:gradle-node-plugin:1.1.1"
classpath "com.moowork.gradle:gradle-node-plugin:1.2.0"
}
}
Expand All @@ -52,7 +52,7 @@ buildscript {
}
dependencies {
classpath "com.moowork.gradle:gradle-node-plugin:1.2.0-SNAPSHOT"
classpath "com.moowork.gradle:gradle-node-plugin:1.3.0-SNAPSHOT"
}
}
Expand Down
2 changes: 1 addition & 1 deletion docs/node.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ file (see [Installing](installing.md) for details):

```gradle
plugins {
id "com.moowork.node" version "1.1.1"
id "com.moowork.node" version "1.2.0"
}
```

Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#
# Current version
#
version = 1.2.0-SNAPSHOT
version = 1.2.0

0 comments on commit 3e97249

Please sign in to comment.