Skip to content

Commit

Permalink
Prepare for next development cycle
Browse files Browse the repository at this point in the history
  • Loading branch information
remkop committed Oct 21, 2018
1 parent f6b991d commit 953fa84
Show file tree
Hide file tree
Showing 8 changed files with 17 additions and 17 deletions.
2 changes: 1 addition & 1 deletion docs/autocomplete.adoc
@@ -1,7 +1,7 @@
= Autocomplete for Java Command Line Applications
//:author: Remko Popma
//:email: rpopma@apache.org
:revnumber: 3.7.0
:revnumber: 3.8.0-SNAPSHOT
:revdate: 2018-10-21
:toc: left
:numbered:
Expand Down
14 changes: 7 additions & 7 deletions docs/index.adoc
@@ -1,7 +1,7 @@
= picocli - a mighty tiny command line interface
//:author: Remko Popma
//:email: rpopma@apache.org
:revnumber: 3.7.0
:revnumber: 3.8.0-SNAPSHOT
:revdate: 2018-10-21
:toc: left
:numbered:
Expand Down Expand Up @@ -3082,7 +3082,7 @@ The script body is executed if the user input was valid and did not request usag

[source,groovy]
----
@Grab('info.picocli:picocli:3.7.0')
@Grab('info.picocli:picocli:3.8.0-SNAPSHOT')
@Command(name = "myScript",
mixinStandardHelpOptions = true, // add --help and --version options
description = "@|bold Groovy script|@ @|underline picocli|@ example")
Expand All @@ -3107,7 +3107,7 @@ CAUTION: When using a Groovy version older than 2.4.7, use this workaround for t

[source,groovy]
----
@Grab('info.picocli:picocli:3.7.0')
@Grab('info.picocli:picocli:3.8.0-SNAPSHOT')
@GrabExclude('org.codehaus.groovy:groovy-all') // work around GROOVY-7613
...
----
Expand Down Expand Up @@ -3209,27 +3209,27 @@ See the <<Source,source code>> below. Copy and paste it into a file called `Comm

=== Gradle
----
compile 'info.picocli:picocli:3.7.0'
compile 'info.picocli:picocli:3.8.0-SNAPSHOT'
----

=== Maven
----
<dependency>
<groupId>info.picocli</groupId>
<artifactId>picocli</artifactId>
<version>3.7.0</version>
<version>3.8.0-SNAPSHOT</version>
</dependency>
----

=== Scala SBT
----
libraryDependencies += "info.picocli" % "picocli" % "3.7.0"
libraryDependencies += "info.picocli" % "picocli" % "3.8.0-SNAPSHOT"
----

=== Ivy

----
<dependency org="info.picocli" name="picocli" rev="3.7.0" />
<dependency org="info.picocli" name="picocli" rev="3.8.0-SNAPSHOT" />
----

=== Source
Expand Down
2 changes: 1 addition & 1 deletion docs/picocli-3.0-programmatic-api.adoc
@@ -1,7 +1,7 @@
= Programmatic API
//:author: Remko Popma
//:email: rpopma@apache.org
:revnumber: 3.7.0
:revnumber: 3.8.0-SNAPSHOT
:revdate: 2018-10-21
:toc: left
:numbered:
Expand Down
2 changes: 1 addition & 1 deletion docs/quick-guide.adoc
@@ -1,7 +1,7 @@
= Quick Guide
//:author: Remko Popma
//:email: rpopma@apache.org
:revnumber: 3.7.0
:revnumber: 3.8.0-SNAPSHOT
:revdate: 2018-10-21
:toc: left
:numbered:
Expand Down
8 changes: 4 additions & 4 deletions gradle.properties
Expand Up @@ -6,11 +6,11 @@ jlineVersion = 2.14.6
junitDepVersion = 4.11
junitVersion = 4.12

projectPreviousVersion = 3.7.0-SNAPSHOT
projectPreviousVersionRegex = 3\\.6\\.1
projectVersion = 3.7.0
projectPreviousVersion = 3.7.0
projectPreviousVersionRegex = 3\\.7\\.0
projectVersion = 3.8.0-SNAPSHOT

releaseDate = 2018-10-21
releaseDatePreviousRegex = 2018\\-09\\-28
releaseDatePreviousRegex = 2018\\-10\\-21

systemRulesVersion = 1.17.1
2 changes: 1 addition & 1 deletion src/main/java/picocli/CommandLine.java
Expand Up @@ -141,7 +141,7 @@
*/
public class CommandLine {
/** This is picocli version {@value}. */
public static final String VERSION = "3.7.0";
public static final String VERSION = "3.8.0-SNAPSHOT";

private final Tracer tracer = new Tracer();
private final CommandSpec commandSpec;
Expand Down
2 changes: 1 addition & 1 deletion src/test/java/picocli/AutoCompleteTest.java
Expand Up @@ -311,7 +311,7 @@ public void testAutoCompleteAppBothScriptFilesForceOverwrite() throws Exception
"# =======================\n" +
"#\n" +
"# Bash completion support for the `picocli.AutoComplete` command,\n" +
"# generated by [picocli](http://picocli.info/) version 3.7.0.\n" +
"# generated by [picocli](http://picocli.info/) version 3.8.0-SNAPSHOT.\n" +
"#\n" +
"# Installation\n" +
"# ------------\n" +
Expand Down
2 changes: 1 addition & 1 deletion src/test/java/picocli/CommandLineTest.java
Expand Up @@ -181,7 +181,7 @@ class App { }
}
@Test
public void testVersion() {
assertEquals("3.7.0", CommandLine.VERSION);
assertEquals("3.8.0-SNAPSHOT", CommandLine.VERSION);
}
@Test
public void testArrayPositionalParametersAreReplacedNotAppendedTo() {
Expand Down

0 comments on commit 953fa84

Please sign in to comment.