From 961b54f56482d3368b2061e120fbcc5667ab62da Mon Sep 17 00:00:00 2001 From: Alex Nordlund Date: Sat, 6 Feb 2021 17:46:58 +0100 Subject: [PATCH] Update all links to 3.0.0 --- CHANGELOG.md | 4 ++-- README.md | 5 +++-- docs/installation.md | 4 ++-- docs/usage.md | 4 ++-- 4 files changed, 9 insertions(+), 8 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 3591ab99..eefbbc09 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,6 @@ # Changelog -## Version 3.0 *(not yet released)* +## Version 3.0 *(2021-02-06)* * Rewrite the code to Kotlin (issue [#17](https://github.com/node-gradle/gradle-node-plugin/issues/17)) (thanks [mikejhill](https://github.com/mikejhill) @@ -23,7 +23,7 @@ that shows how to use this plugin version with Kotlin) ### Breaking changes -This version **breaks backward compatibility**. It should not visible for most Groovy DSL users since the Groovy DSL +This version **breaks backward compatibility**. It should not be visible for most Groovy DSL users since the Groovy DSL handles transparently most of these changes. Here is what changed: * All the packages were renamed (they were inherited from the original forked project): diff --git a/README.md b/README.md index faa68c68..f3e2d908 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-2.2.4-orange.svg) +![Version](https://img.shields.io/badge/Version-3.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 @@ -38,7 +38,8 @@ issue to [GitHub Issues](https://github.com/node-gradle/gradle-node-plugin/issue Here's the documentation for older releases of the plugin: -* [2.2.4](https://github.com/node-gradle/gradle-node-plugin/blob/2.2.4/README.md) (current) +* [3.0.0](https://github.com/node-gradle/gradle-node-plugin/blob/3.0.0/README.md) (current) +* [2.2.4](https://github.com/node-gradle/gradle-node-plugin/blob/2.2.4/README.md) * [2.2.3](https://github.com/node-gradle/gradle-node-plugin/blob/2.2.3/README.md) * [2.2.2](https://github.com/node-gradle/gradle-node-plugin/blob/2.2.2/README.md) * [2.2.1](https://github.com/node-gradle/gradle-node-plugin/blob/2.2.1/README.md) diff --git a/docs/installation.md b/docs/installation.md index fa09d663..bdec433e 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 "2.2.4" + id "com.github.node-gradle.node" version "3.0.0" } ``` @@ -18,7 +18,7 @@ buildscript { } dependencies { - classpath "com.github.node-gradle:gradle-node-plugin:2.2.4" + classpath "com.github.node-gradle:gradle-node-plugin:3.0.0" } } diff --git a/docs/usage.md b/docs/usage.md index 1427bba6..1cbce14f 100644 --- a/docs/usage.md +++ b/docs/usage.md @@ -8,7 +8,7 @@ If it is specified in the configuration, it is able to download and manage Node. unpack them into your local `.gradle` directory and use them from there. It also automatically installs [npm](https://www.npmjs.com/) when installing Node.js. -Is is also able to install [Yarn](https://yarnpkg.com/) by downloading it from a npm registry. +It is also able to install [Yarn](https://yarnpkg.com/) by downloading it from a npm registry. The version of each tool to use can be specified in the configuration. @@ -18,7 +18,7 @@ file (see [Installing](installation.md) for details): ```gradle plugins { - id "com.github.node-gradle.node" version "2.2.4" + id "com.github.node-gradle.node" version "3.0.0" } ```