From 5b2c425b60a79dc9021ccb6892513fc79d8fec9c Mon Sep 17 00:00:00 2001 From: Alex Nordlund Date: Sun, 23 Apr 2023 21:28:30 +0200 Subject: [PATCH] Update README --- CHANGELOG.md | 3 ++- README.md | 5 +++-- docs/installation.md | 4 ++-- docs/usage.md | 2 +- 4 files changed, 8 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index b098d74f..31d2dee6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,9 +2,10 @@ ## Version 4.x *(unreleased)* -## Version 4.0.0 *(unreleased)* +## Version 4.0.0 *(2023-04-23)* * Drop support for versions lower than Gradle 7.5.1 * Rename `package.json` extension to `packageJson` [#232](https://github.com/node-gradle/gradle-node-plugin/issues/232) +* Support configuration-cache on Gradle 8.1 [#271](https://github.com/node-gradle/gradle-node-plugin/issues/271) ## Version 3.6.0 *(2023-04-20)* * Allow task rules to be disabled [#116](https://github.com/node-gradle/gradle-node-plugin/issues/116) diff --git a/README.md b/README.md index 989375e2..5e8166b9 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-3.6.0-orange.svg) +![Version](https://img.shields.io/badge/Version-4.0.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: -* [3.6.0](https://github.com/node-gradle/gradle-node-plugin/blob/3.6.0/README.md) (current) +* [4.0.0](https://github.com/node-gradle/gradle-node-plugin/blob/4.0.0/README.md) (current) +* [3.6.0](https://github.com/node-gradle/gradle-node-plugin/blob/3.6.0/README.md) * [3.5.1](https://github.com/node-gradle/gradle-node-plugin/blob/3.5.1/README.md) * [3.5.0](https://github.com/node-gradle/gradle-node-plugin/blob/3.5.0/README.md) * [3.4.0](https://github.com/node-gradle/gradle-node-plugin/blob/3.4.0/README.md) diff --git a/docs/installation.md b/docs/installation.md index 2a58e96b..ebfaf0fa 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 "3.6.0" + id "com.github.node-gradle.node" version "4.0.0" } ``` @@ -18,7 +18,7 @@ buildscript { } dependencies { - classpath "com.github.node-gradle:gradle-node-plugin:3.6.0" + classpath "com.github.node-gradle:gradle-node-plugin:4.0.0" } } diff --git a/docs/usage.md b/docs/usage.md index b8eafea9..faa7dd8a 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 "3.6.0" + id "com.github.node-gradle.node" version "4.0.0" } ```