Skip to content

Commit

Permalink
Switch over to use semantic versioning (fixes #169)
Browse files Browse the repository at this point in the history
  • Loading branch information
Sten Roger Sandvik committed Dec 2, 2016
1 parent 2573090 commit 52b03e1
Show file tree
Hide file tree
Showing 7 changed files with 14 additions and 13 deletions.
5 changes: 3 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,14 +1,15 @@
Changelog
=========

Version 1.0 *(not released)*
----------------------------
Version 1.0.0 *(not released)*
------------------------------

* Move npm and yarn classes into separate package (#158)
* Move grunt plugin code to this plugin (#159)
* Move gulp plugin code to this plugin (#160)
* Use 6.9.1 as default node version (#163)
* Fix missing property exception when using plugin in conjunction with Node 6.x.x on Windows (#167) _(mark-vieira)_
* Switch over to use semantic versioning (#169)
* ...

Version 0.14 *(2016-11-29)*
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
[![License](https://img.shields.io/github/license/srs/gradle-node-plugin.svg)](http://www.apache.org/licenses/LICENSE-2.0.html)
[![Download](https://api.bintray.com/packages/srs/maven/gradle-node-plugin/images/download.svg) ](https://bintray.com/srs/maven/gradle-node-plugin/_latestVersion)

> **_NOTE_: 1.0 release is not out yet. Please refer to the
> **_NOTE_: 1.0.0 release is not out yet. Please refer to the
[current 0.14 release](https://github.com/srs/gradle-node-plugin/blob/v0.14/README.md).**

This plugin enabled you to use a lot of [NodeJS](https://nodejs.org)-based technologies as part of your
Expand Down
2 changes: 1 addition & 1 deletion docs/grunt.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ start using the plugin, add this into your `build.gradle` file (see [Installing]

```gradle
plugins {
id "com.moowork.grunt" version "1.0"
id "com.moowork.grunt" version "1.0.0"
}
```

Expand Down
2 changes: 1 addition & 1 deletion docs/gulp.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ To start using the plugin, add this into your `build.gradle` file (see [Installi

```gradle
plugins {
id "com.moowork.gulp" version "1.0"
id "com.moowork.gulp" version "1.0.0"
}
```

Expand Down
12 changes: 6 additions & 6 deletions docs/installing.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,17 +5,17 @@ in your `build.gradle` file:

```gradle
plugins {
id "com.moowork.node" version "1.0"
id "com.moowork.node" version "1.0.0"
}
```

If you want to install all of the node-plugins (which is pretty uncommon), then write this:

```gradle
plugins {
id "com.moowork.node" version "1.0"
id "com.moowork.grunt" version "1.0"
id "com.moowork.gulp" version "1.0"
id "com.moowork.node" version "1.0.0"
id "com.moowork.grunt" version "1.0.0"
id "com.moowork.gulp" version "1.0.0"
}
```

Expand All @@ -30,7 +30,7 @@ buildscript {
}
dependencies {
classpath "com.moowork.gradle:gradle-node-plugin:1.0"
classpath "com.moowork.gradle:gradle-node-plugin:1.0.0"
}
}
Expand All @@ -52,7 +52,7 @@ buildscript {
}
dependencies {
classpath "com.moowork.gradle:gradle-node-plugin:2.0-SNAPSHOT"
classpath "com.moowork.gradle:gradle-node-plugin:2.0.0-SNAPSHOT"
}
}
Expand Down
2 changes: 1 addition & 1 deletion docs/node.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ file (see [Installing](installing.md) for details):

```gradle
plugins {
id "com.moowork.node" version "1.0"
id "com.moowork.node" version "1.0.0"
}
```

Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#
# Current version
#
version = 1.0-SNAPSHOT
version = 1.0.0-SNAPSHOT

0 comments on commit 52b03e1

Please sign in to comment.