Skip to content

Commit

Permalink
Move development to 1.0.0-SNAPSHOT.
Browse files Browse the repository at this point in the history
  • Loading branch information
jsichi committed Apr 16, 2016
1 parent abab8e0 commit c3adaef
Show file tree
Hide file tree
Showing 8 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion HISTORY.md
Expand Up @@ -2,7 +2,7 @@

Changes to JGraphT in each version:

- **version 0.9.3** (under development):
- **version 1.0.0** (under development):
- Moved to JDK 1.8 (cleanup contributed by Joris Kinable)
- Fixes for `MaskSubgraph`, contributed by Andrew Gainer-Dewar
- Optimized edge lookups (contributed by Joris Kinable)
Expand Down
4 changes: 2 additions & 2 deletions README.md
Expand Up @@ -11,7 +11,7 @@ Please address all contributions, suggestions, and inquiries to the [user mailin

## Introduction ##

JGraphT is a free Java class library that provides mathematical graph-theory objects and algorithms. It runs on Java 2 Platform (requires JDK 1.8 or later starting with 0.9.3).
JGraphT is a free Java class library that provides mathematical graph-theory objects and algorithms. It runs on Java 2 Platform (requires JDK 1.8 or later starting with JGraphT 1.0.0).

JGraphT may be used under the terms of either the

Expand Down Expand Up @@ -84,7 +84,7 @@ A local copy of the Javadoc HTML files is included in this distribution. The lat

## Dependencies ##

- JGraphT requires JDK 1.8 or later to build starting with version 0.9.3.
- JGraphT requires JDK 1.8 or later to build starting with version 1.0.0.
- [JUnit](http://www.junit.org) is a unit testing framework. You need JUnit only if you want to run the unit tests. JUnit is licensed under the terms of the IBM Common Public License. The JUnit tests included with JGraphT have been created using JUnit `3.8.1`.
- [XMLUnit](http://xmlunit.sourceforge.net) extends JUnit with XML capabilities. You need XMLUnit only if you want to run the unit tests. XMLUnit is licensed under the terms of the BSD
License.
Expand Down
2 changes: 1 addition & 1 deletion jgrapht-core/pom.xml
Expand Up @@ -4,7 +4,7 @@
<parent>
<groupId>org.jgrapht</groupId>
<artifactId>jgrapht</artifactId>
<version>0.9.3-SNAPSHOT</version>
<version>1.0.0-SNAPSHOT</version>
</parent>
<artifactId>jgrapht-core</artifactId>
<name>JGraphT - Core</name>
Expand Down
2 changes: 1 addition & 1 deletion jgrapht-demo/pom.xml
Expand Up @@ -4,7 +4,7 @@
<parent>
<groupId>org.jgrapht</groupId>
<artifactId>jgrapht</artifactId>
<version>0.9.3-SNAPSHOT</version>
<version>1.0.0-SNAPSHOT</version>
</parent>
<artifactId>jgrapht-demo</artifactId>
<name>JGraphT - Demo</name>
Expand Down
2 changes: 1 addition & 1 deletion jgrapht-dist/pom.xml
Expand Up @@ -3,7 +3,7 @@
<parent>
<groupId>org.jgrapht</groupId>
<artifactId>jgrapht</artifactId>
<version>0.9.3-SNAPSHOT</version>
<version>1.0.0-SNAPSHOT</version>
</parent>
<artifactId>jgrapht-dist</artifactId>
<name>JGraphT - Distributable Archives</name>
Expand Down
2 changes: 1 addition & 1 deletion jgrapht-ext/pom.xml
Expand Up @@ -4,7 +4,7 @@
<parent>
<groupId>org.jgrapht</groupId>
<artifactId>jgrapht</artifactId>
<version>0.9.3-SNAPSHOT</version>
<version>1.0.0-SNAPSHOT</version>
</parent>
<artifactId>jgrapht-ext</artifactId>
<name>JGraphT - Ext</name>
Expand Down
2 changes: 1 addition & 1 deletion jgrapht-touchgraph/pom.xml
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>org.jgrapht</groupId>
<artifactId>jgrapht</artifactId>
<version>0.9.3-SNAPSHOT</version>
<version>1.0.0-SNAPSHOT</version>
</parent>
<artifactId>jgrapht-touchgraph</artifactId>
<name>JGraphT - Touchgraph</name>
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Expand Up @@ -5,7 +5,7 @@
<artifactId>jgrapht</artifactId>
<packaging>pom</packaging>
<name>JGraphT - Parent</name>
<version>0.9.3-SNAPSHOT</version>
<version>1.0.0-SNAPSHOT</version>
<description>A Java class library for graph-theory data structures and algorithms.</description>
<url>http://www.jgrapht.org</url>
<parent>
Expand Down

0 comments on commit c3adaef

Please sign in to comment.