Skip to content

Commit

Permalink
Update documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
deepy committed Feb 2, 2024
1 parent 5688608 commit 92e1d21
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 5 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@

## Version 7.x *(unreleased)*

## Version 7.0.2 *(2024-02-02)*
* Prevent misconfigured `workDir` from removing all unrelated files [#297](https://github.com/node-gradle/gradle-node-plugin/issues/297)

## Version 7.0.1 *(2023-10-04)*
* Adds missing `result` to NodeTask [#289](https://github.com/node-gradle/gradle-node-plugin/issues/289)

Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

![Build Status](https://github.com/node-gradle/gradle-node-plugin/workflows/Build/badge.svg?branch=main)
[![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.1-orange.svg)
![Version](https://img.shields.io/badge/Version-7.0.2-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
Expand Down Expand Up @@ -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.1](https://github.com/node-gradle/gradle-node-plugin/blob/7.0.1/README.md) (current)
* [7.0.2](https://github.com/node-gradle/gradle-node-plugin/blob/7.0.2/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)
Expand Down
4 changes: 2 additions & 2 deletions docs/installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ in your `build.gradle` file:

```gradle
plugins {
id "com.github.node-gradle.node" version "7.0.1"
id "com.github.node-gradle.node" version "7.0.2"
}
```

Expand All @@ -18,7 +18,7 @@ buildscript {
}
dependencies {
classpath "com.github.node-gradle:gradle-node-plugin:7.0.1"
classpath "com.github.node-gradle:gradle-node-plugin:7.0.2"
}
}
Expand Down
2 changes: 1 addition & 1 deletion docs/usage.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ file (see [Installing](installation.md) for details):

```gradle
plugins {
id "com.github.node-gradle.node" version "7.0.1"
id "com.github.node-gradle.node" version "7.0.2"
}
```

Expand Down

0 comments on commit 92e1d21

Please sign in to comment.