From a319f0e05c8d29d9ffb7042b98db0c41999a7846 Mon Sep 17 00:00:00 2001 From: Alex Nordlund Date: Fri, 27 Sep 2024 14:53:14 +0200 Subject: [PATCH] 7.1.0 --- CHANGELOG.md | 2 +- README.md | 5 +++-- docs/installation.md | 4 ++-- docs/usage.md | 2 +- 4 files changed, 7 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index f0866202..21a9ea4b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,7 +2,7 @@ ## Version 7.x *(unreleased)* -## Version 7.1.0 *(unreleased)* +## Version 7.1.0 *(2024-09-27)* * Add support for ARM64 Windows [#315](https://github.com/node-gradle/gradle-node-plugin/issues/315) * Add support for AIX [#320](https://github.com/node-gradle/gradle-node-plugin/issues/320) * Add license to publications POM [#319](https://github.com/node-gradle/gradle-node-plugin/issues/319) diff --git a/README.md b/README.md index 329fd9d9..7854fef7 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.2-orange.svg) +![Version](https://img.shields.io/badge/Version-7.1.0-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,8 @@ 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.2](https://github.com/node-gradle/gradle-node-plugin/blob/7.0.2/README.md) (current) +* [7.1.0](https://github.com/node-gradle/gradle-node-plugin/blob/7.1.0/README.md) (current) +* [7.0.2](https://github.com/node-gradle/gradle-node-plugin/blob/7.0.2/README.md) * [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 daae414e..aad6a6e9 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.2" + id "com.github.node-gradle.node" version "7.1.0" } ``` @@ -18,7 +18,7 @@ buildscript { } dependencies { - classpath "com.github.node-gradle:gradle-node-plugin:7.0.2" + classpath "com.github.node-gradle:gradle-node-plugin:7.1.0" } } diff --git a/docs/usage.md b/docs/usage.md index 42ee1066..90619f1c 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.2" + id "com.github.node-gradle.node" version "7.1.0" } ```