Skip to content

Commit 7f3bd2d

Browse files
committed
3.1 release
1 parent 608fa08 commit 7f3bd2d

2 files changed

Lines changed: 6 additions & 5 deletions

File tree

README.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# JState (v3.0) [![Build Status](https://travis-ci.org/UnquietCode/JState.png?branch=master)](https://travis-ci.org/UnquietCode/JState)
1+
# JState (v3.1) [![Build Status](https://travis-ci.org/UnquietCode/JState.png?branch=master)](https://travis-ci.org/UnquietCode/JState)
22
A core Java tool which provides state machine semantics using enums, strings, or anything else you
33
want to represent the various states. States have transitions which can move them to other states.
44
Callbacks are provided for transitions, and for each state when entering or exiting. It is also
@@ -21,11 +21,12 @@ accommodate Sonatype's repository hosting requirements.)
2121
<dependency>
2222
<groupId>com.unquietcode.tools.jstate</groupId>
2323
<artifactId>jstate</artifactId>
24-
<version>3.0</version>
24+
<version>3.1</version>
2525
</dependency>
2626
```
2727

28-
[Javadocs Link](http://www.javadoc.io/doc/com.unquietcode.tools.jstate/jstate/3.0)
28+
# Documentation
29+
You can view the [Javadocs](http://www.javadoc.io/doc/com.unquietcode.tools.jstate/jstate/3.1) or the unit tests for more information about how to use the library.
2930

3031
# Usage
3132
A typical use case might be a state machine for controlling a process, which can move between the

pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
<groupId>com.unquietcode.tools.jstate</groupId>
77
<artifactId>jstate</artifactId>
8-
<version>3.1-SNAPSHOT</version>
8+
<version>3.1</version>
99
<packaging>bundle</packaging>
1010

1111
<name>JState</name>
@@ -141,4 +141,4 @@
141141
<url>http://opensource.org/licenses/MIT</url>
142142
</license>
143143
</licenses>
144-
</project>
144+
</project>

0 commit comments

Comments
 (0)