Skip to content

Commit

Permalink
Updated changelog and docs
Browse files Browse the repository at this point in the history
  • Loading branch information
Sten Roger Sandvik committed Mar 17, 2019
1 parent b30ec61 commit 7d841df
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 9 deletions.
3 changes: 1 addition & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,15 +1,14 @@
Changelog
=========

Version 1.3.0 *(unreleased)*
Version 1.3.0 *(2019-03-17)*
----------------------------

* Relativize symlink to npmScriptFile (#319) _(fp7)_
* Added gradle build cache support for npm install (#318) _(bjornmagnusson)_
* 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)*
----------------------------
Expand Down
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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)
Expand Down
Binary file removed docs/images/support.png
Binary file not shown.
10 changes: 5 additions & 5 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.2.0"
id "com.moowork.node" version "1.3.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.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"
}
```

Expand All @@ -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"
}
}
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.2.0"
id "com.moowork.node" version "1.3.0"
}
```

Expand Down

0 comments on commit 7d841df

Please sign in to comment.