Skip to content

Commit

Permalink
0.9.2 bugfix release
Browse files Browse the repository at this point in the history
  • Loading branch information
remkop committed Apr 20, 2017
1 parent b837081 commit ebc7c1b
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 5 deletions.
5 changes: 3 additions & 2 deletions docs/index.adoc
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
= picocli - a mighty tiny Command Line Interface
:author: Remko Popma
:email: rpopma@apache.org
:revnumber: 0.9.1
:revnumber: 0.9.2
:revdate: 2017-04-19
:toc: left
:numbered:
Expand Down Expand Up @@ -882,7 +882,8 @@ Picocli will only emit ANSI escape codes on supported platforms.

==== Unix and Linux
Most Unix and Linux platforms support ANSI colors natively.
On Windows, when picocli detects it is running under a Unix variant like Cygwin or MSYS(2) on Windows it will display ANSI colors and styles, otherwise it will not emit ANSI codes.
On Windows, when picocli detects it is running under a Unix variant like Cygwin or MSYS(2) on Windows
it will display ANSI colors and styles, otherwise it will not emit ANSI codes.

==== Windows
Starting from Windows 10 the Windows console https://msdn.microsoft.com/en-us/library/windows/desktop/mt638032(v=vs.85).aspx[supports ANSI escape sequences], but http://www.nivot.org/blog/post/2016/02/04/Windows-10-TH2-(v1511)-Console-Host-Enhancements[they may need to be enabled].
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

<groupId>picocli</groupId>
<artifactId>picocli</artifactId>
<version>0.9.2-SNAPSHOT</version>
<version>0.9.2</version>

<dependencies>
<dependency>
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/picocli/CommandLine.java
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@
*/
public class CommandLine {
/** This is picocli version {@value}. */
public static final String VERSION = "0.9.2-SNAPSHOT";
public static final String VERSION = "0.9.2";

/** Set this field to {@code true} to force ANSI escape sequences on, or to {@code false} to force ANSI escape
* sequences off. The default ({@code null}) is to enable ANSI escape sequences on supported platforms. */
Expand Down
2 changes: 1 addition & 1 deletion src/test/java/picocli/CommandLineTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@
public class CommandLineTest {
@Test
public void testVersion() {
assertEquals("0.9.2-SNAPSHOT", CommandLine.VERSION);
assertEquals("0.9.2", CommandLine.VERSION);
}

private static class SupportedTypes {
Expand Down

0 comments on commit ebc7c1b

Please sign in to comment.