From 2d5b18c3b6f0ecad3faf81e1a6fe34bfd88670b2 Mon Sep 17 00:00:00 2001 From: Alex Nordlund Date: Wed, 4 Oct 2023 20:13:08 +0200 Subject: [PATCH] 7.0.1 --- CHANGELOG.md | 3 +++ README.md | 4 ++-- docs/installation.md | 4 ++-- docs/usage.md | 2 +- 4 files changed, 8 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index b5b1aaa6..78f14937 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,9 @@ ## Version 7.x *(unreleased)* +## Version 7.0.1 *(2023-10-04)* +* Adds missing `result` to NodeTask [#289](https://github.com/node-gradle/gradle-node-plugin/issues/289) + ## Version 7.0.0 *(2023-08-17)* * Upgrade default Node to 18.17.1 and npm to 9.6.7 * Always use downloaded Yarn as per documentation [#284](https://github.com/node-gradle/gradle-node-plugin/issues/284) diff --git a/README.md b/README.md index 5aebaea4..5955cca9 100644 --- a/README.md +++ b/README.md @@ -4,7 +4,7 @@ ![Build Status](https://github.com/node-gradle/gradle-node-plugin/workflows/Build/badge.svg?branch=master) [![License](https://img.shields.io/github/license/node-gradle/gradle-node-plugin.svg)](http://www.apache.org/licenses/LICENSE-2.0.html) -![Version](https://img.shields.io/badge/Version-7.0.0-orange.svg) +![Version](https://img.shields.io/badge/Version-7.0.1-orange.svg) This plugin enables you to use a lot of [Node.js](https://nodejs.org)-based technologies as part of your build without having Node.js installed locally on your system. It integrates the following Node.js-based system @@ -39,7 +39,7 @@ issue to [GitHub Issues](https://github.com/node-gradle/gradle-node-plugin/issue Here's the documentation for older releases of the plugin: -* [7.0.0](https://github.com/node-gradle/gradle-node-plugin/blob/7.0.0/README.md) (current) +* [7.0.1](https://github.com/node-gradle/gradle-node-plugin/blob/7.0.1/README.md) (current) * [6.0.0](https://github.com/node-gradle/gradle-node-plugin/blob/6.0.0/README.md) * [5.0.0](https://github.com/node-gradle/gradle-node-plugin/blob/5.0.0/README.md) * [4.0.0](https://github.com/node-gradle/gradle-node-plugin/blob/4.0.0/README.md) diff --git a/docs/installation.md b/docs/installation.md index f02c07a5..158b0192 100644 --- a/docs/installation.md +++ b/docs/installation.md @@ -5,7 +5,7 @@ in your `build.gradle` file: ```gradle plugins { - id "com.github.node-gradle.node" version "7.0.0" + id "com.github.node-gradle.node" version "7.0.1" } ``` @@ -18,7 +18,7 @@ buildscript { } dependencies { - classpath "com.github.node-gradle:gradle-node-plugin:7.0.0" + classpath "com.github.node-gradle:gradle-node-plugin:7.0.1" } } diff --git a/docs/usage.md b/docs/usage.md index ae7c3f6d..5d1954be 100644 --- a/docs/usage.md +++ b/docs/usage.md @@ -18,7 +18,7 @@ file (see [Installing](installation.md) for details): ```gradle plugins { - id "com.github.node-gradle.node" version "7.0.0" + id "com.github.node-gradle.node" version "7.0.1" } ```