diff --git a/CHANGELOG.md b/CHANGELOG.md index 42e839d..023ffe8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,7 +1,7 @@ Changelog ========= -Version 1.3.0 *(unreleased)* +Version 1.3.0 *(2019-03-17)* ---------------------------- * Relativize symlink to npmScriptFile (#319) _(fp7)_ @@ -9,7 +9,6 @@ Version 1.3.0 *(unreleased)* * Updated to use node version 11.12.0 as default * Bumped Gradle wrapper version to 5.2.1 * Bumped Java compatibility version to 1.8 -* ... Version 1.2.0 *(2017-06-14)* ---------------------------- diff --git a/README.md b/README.md index 2c2e728..79b3cd1 100644 --- a/README.md +++ b/README.md @@ -3,7 +3,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://www.apache.org/licenses/LICENSE-2.0.html) -![Version](https://img.shields.io/badge/Version-1.2.0-orange.svg) +![Version](https://img.shields.io/badge/Version-1.3.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 @@ -38,6 +38,7 @@ issue to [GitHub Issues](https://github.com/srs/gradle-node-plugin/issues). Here's the documentation for older releases of the plugin: +* [1.2.0](https://github.com/srs/gradle-node-plugin/blob/v1.2.0/README.md) * [1.1.1](https://github.com/srs/gradle-node-plugin/blob/v1.1.1/README.md) * [1.1.0](https://github.com/srs/gradle-node-plugin/blob/v1.1.0/README.md) * [1.0.1](https://github.com/srs/gradle-node-plugin/blob/v1.0.1/README.md) diff --git a/docs/images/support.png b/docs/images/support.png deleted file mode 100644 index fcc33fa..0000000 Binary files a/docs/images/support.png and /dev/null differ diff --git a/docs/installing.md b/docs/installing.md index 2209a14..c1fb84a 100644 --- a/docs/installing.md +++ b/docs/installing.md @@ -5,7 +5,7 @@ in your `build.gradle` file: ```gradle plugins { - id "com.moowork.node" version "1.2.0" + id "com.moowork.node" version "1.3.0" } ``` @@ -13,9 +13,9 @@ If you want to install all of the node-plugins (which is pretty uncommon), then ```gradle plugins { - id "com.moowork.node" version "1.2.0" - id "com.moowork.grunt" version "1.2.0" - id "com.moowork.gulp" version "1.2.0" + id "com.moowork.node" version "1.3.0" + id "com.moowork.grunt" version "1.3.0" + id "com.moowork.gulp" version "1.3.0" } ``` @@ -30,7 +30,7 @@ buildscript { } dependencies { - classpath "com.moowork.gradle:gradle-node-plugin:1.2.0" + classpath "com.moowork.gradle:gradle-node-plugin:1.3.0" } } diff --git a/docs/node.md b/docs/node.md index c051cf7..96cb7df 100644 --- a/docs/node.md +++ b/docs/node.md @@ -10,7 +10,7 @@ file (see [Installing](installing.md) for details): ```gradle plugins { - id "com.moowork.node" version "1.2.0" + id "com.moowork.node" version "1.3.0" } ```