Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,12 +15,12 @@ mvn clean install
<dependency>
<groupId>com.github.cfmleditor</groupId>
<artifactId>cfml.parsing</artifactId>
<version>2.16.0</version>
<version>2.16.1-SNAPSHOT</version>
</dependency>
```

To update the version number prior to a build, run:
`mvn versions:set -DnewVersion=2.16.0`
`mvn versions:set -DnewVersion=2.16.1-SNAPSHOT`

#Release example
(we do our final commit for 2.2.14-SNAPSHOT on the develop branch, we're ready to release it)
Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ plugins {
id 'net.researchgate.release' version '3.0.2' apply(false)
}

version = '2.16.0'
version = '2.16.1-SNAPSHOT'

license {
header rootProject.file('LICENSE')
Expand Down
2 changes: 1 addition & 1 deletion cfml.cli/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,6 @@ Native binary CLI for cfparser.
<dependency>
<groupId>com.github.cfmleditor</groupId>
<artifactId>cfml.cli</artifactId>
<version>2.16.0</version>
<version>2.16.1-SNAPSHOT</version>
</dependency>
```
2 changes: 1 addition & 1 deletion cfml.cli/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>com.github.cfmleditor</groupId>
<artifactId>cfparser</artifactId>
<version>2.16.0</version>
<version>2.16.1-SNAPSHOT</version>
</parent>

<artifactId>cfml.cli</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion cfml.dictionary/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,6 @@ The CFML dictionary project. Aims to have the different vendor and version, ver
<dependency>
<groupId>com.github.cfmleditor</groupId>
<artifactId>cfml.dictionary</artifactId>
<version>2.16.0</version>
<version>2.16.1-SNAPSHOT</version>
</dependency>
```
2 changes: 1 addition & 1 deletion cfml.dictionary/gradle.properties
Original file line number Diff line number Diff line change
@@ -1 +1 @@
version=2.16.0
version=2.16.1-SNAPSHOT
2 changes: 1 addition & 1 deletion cfml.dictionary/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<parent>
<groupId>com.github.cfmleditor</groupId>
<artifactId>cfparser</artifactId>
<version>2.16.0</version>
<version>2.16.1-SNAPSHOT</version>
</parent>

<modelVersion>4.0.0</modelVersion>
Expand Down
2 changes: 1 addition & 1 deletion cfml.parsing/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,6 @@ mvn clean install
<dependency>
<groupId>com.github.cfmleditor</groupId>
<artifactId>cfml.parsing</artifactId>
<version>2.16.0</version>
<version>2.16.1-SNAPSHOT</version>
</dependency>
```
2 changes: 1 addition & 1 deletion cfml.parsing/gradle.properties
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
antlrVersion=4.13.2
version=2.16.0
version=2.16.1-SNAPSHOT
2 changes: 1 addition & 1 deletion cfml.parsing/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<parent>
<groupId>com.github.cfmleditor</groupId>
<artifactId>cfparser</artifactId>
<version>2.16.0</version>
<version>2.16.1-SNAPSHOT</version>
</parent>

<modelVersion>4.0.0</modelVersion>
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>com.github.cfmleditor</groupId>
<artifactId>cfparser</artifactId>
<version>2.16.0</version>
<version>2.16.1-SNAPSHOT</version>
<packaging>pom</packaging>

<name>coldfusion-parser</name>
Expand Down
Loading