Skip to content

Commit

Permalink
Release 3.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
kerrykimbrough committed Mar 16, 2019
1 parent 8a5d4ee commit ac75510
Show file tree
Hide file tree
Showing 9 changed files with 16 additions and 12 deletions.
8 changes: 3 additions & 5 deletions README.md
Expand Up @@ -2,12 +2,10 @@

## What's New? ##

* The latest version ([Tcases 3.0.0](ReleaseNotes.md#300)) is now available at the Maven Central Repository.
* The latest version ([Tcases 3.0.1](ReleaseNotes.md#301)) is now available at the Maven Central Repository.
See [HowToDownload](HowToDownload.md) for download instructions.

* Tcases 3.0.0 introduces [support for JSON](http://www.cornutum.org/tcases/docs/Tcases-Json.htm), for all documents that Tcases reads and produces.
Also included is a major reorganization of the Tcases API, which is not fully compatible with previous releases
-- see the [release notes](ReleaseNotes.md#300) for details.
* Tcases 3.0.1 is a patch release to fix [an annoying problem](ReleaseNotes.md#301) in [Tcases 3.0.0](ReleaseNotes.md#300)

* Subscribe to the [Tcases Forum](https://groups.google.com/d/forum/tcases) group to get notifications and share experiences with other Tcases users.

Expand All @@ -32,7 +30,7 @@ Of course, the system test definition is not something you can execute directly.
## Get Started! ##

* [Tcases: The Complete Guide](http://www.cornutum.org/tcases/docs/Tcases-Guide.htm)
* [Tcases: The JSON Guide](http://www.cornutum.org/tcases/docs/Tcases-Json.htm): A companion to the _Complete Guide_ adding info specific to JSON
* [Tcases: The JSON Guide](http://www.cornutum.org/tcases/docs/Tcases-Json.htm): A companion to _The Complete Guide_ adding info specific to JSON
* [The Tcases Maven Plugin](http://www.cornutum.org/tcases/docs/tcases-maven-plugin/)
* [How To Download Using Maven](HowToDownload.md)
* [Model-Driven Testing Using Tcases](ModelDrivenTestingForAgileTeams.md)
Expand Down
6 changes: 6 additions & 0 deletions ReleaseNotes.md
@@ -1,5 +1,11 @@
# Release Notes #

## 3.0.1 ##

This is a patch release to fix an annoying problem that caused the shell commands `tcases` and `tcases-reducer` to reject the new `-T` option. For
example, when you run the command `tcases -T json`, Tcases should read a JSON system input definition from standard input and produce a JSON system
test definition on standard output. And now it does.

## 3.0.0 ##

This release introduces a major new feature: you can now use JSON for all of the documents that Tcases reads and produces. At
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Expand Up @@ -7,7 +7,7 @@
<groupId>org.cornutum.tcases</groupId>
<artifactId>tcases</artifactId>
<packaging>pom</packaging>
<version>3.0.1-SNAPSHOT</version>
<version>3.0.1</version>

<name>Tcases</name>
<description>Generates test cases from system input space models</description>
Expand Down
2 changes: 1 addition & 1 deletion tcases-ant/pom.xml
Expand Up @@ -7,7 +7,7 @@
<parent>
<groupId>org.cornutum.tcases</groupId>
<artifactId>tcases</artifactId>
<version>3.0.1-SNAPSHOT</version>
<version>3.0.1</version>
</parent>

<artifactId>tcases-ant</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion tcases-cli/pom.xml
Expand Up @@ -7,7 +7,7 @@
<parent>
<groupId>org.cornutum.tcases</groupId>
<artifactId>tcases</artifactId>
<version>3.0.1-SNAPSHOT</version>
<version>3.0.1</version>
</parent>

<artifactId>tcases-cli</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion tcases-io/pom.xml
Expand Up @@ -7,7 +7,7 @@
<parent>
<groupId>org.cornutum.tcases</groupId>
<artifactId>tcases</artifactId>
<version>3.0.1-SNAPSHOT</version>
<version>3.0.1</version>
</parent>

<artifactId>tcases-io</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion tcases-lib/pom.xml
Expand Up @@ -7,7 +7,7 @@
<parent>
<groupId>org.cornutum.tcases</groupId>
<artifactId>tcases</artifactId>
<version>3.0.1-SNAPSHOT</version>
<version>3.0.1</version>
</parent>

<artifactId>tcases-lib</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion tcases-maven-plugin/pom.xml
Expand Up @@ -7,7 +7,7 @@
<parent>
<groupId>org.cornutum.tcases</groupId>
<artifactId>tcases</artifactId>
<version>3.0.1-SNAPSHOT</version>
<version>3.0.1</version>
</parent>

<artifactId>tcases-maven-plugin</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion tcases-shell/pom.xml
Expand Up @@ -7,7 +7,7 @@
<parent>
<groupId>org.cornutum.tcases</groupId>
<artifactId>tcases</artifactId>
<version>3.0.1-SNAPSHOT</version>
<version>3.0.1</version>
</parent>

<artifactId>tcases-shell</artifactId>
Expand Down

0 comments on commit ac75510

Please sign in to comment.