Skip to content

Commit

Permalink
Merge pull request #77 from phyloref/release/v1.0.0
Browse files Browse the repository at this point in the history
This PR creates release JPhyloRef v1.0.0 by updating the version number and the CHANGELOG.
  • Loading branch information
gaurav committed Apr 17, 2021
2 parents ccec6fe + 14dc916 commit b7e208f
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 5 deletions.
7 changes: 6 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@ Based on the suggestion at https://keepachangelog.com/en/1.0.0/.

## [Unreleased]

## [1.0.0] - 2021-04-15
- Improved README by adding badges and build and execution instructions.
- Removed FaCT++ JNI reasoner (JFact is still included.)

## [0.4.0] - 2021-02-03
- Updated JPhyloRef to use model 2.0 expectations, encoded as logical expressions
on the phylogeny node, rather than comparing labels or using text-based properties.
Expand Down Expand Up @@ -52,7 +56,8 @@ Based on the suggestion at https://keepachangelog.com/en/1.0.0/.
- Initial release, with support for testing phyloreferences expressed in OWL
and stored in RDF/XML.

[Unreleased]: https://github.com/phyloref/jphyloref/compare/v0.4.0...HEAD
[Unreleased]: https://github.com/phyloref/jphyloref/compare/v1.0.0...HEAD
[1.0.0]: https://github.com/phyloref/jphyloref/releases/tag/v1.0.0
[0.4.0]: https://github.com/phyloref/jphyloref/releases/tag/v0.4.0
[0.3.1]: https://github.com/phyloref/jphyloref/releases/tag/v0.3.1
[0.3]: https://github.com/phyloref/jphyloref/releases/tag/v0.3
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ JPhyloRef can be built from source by running `mvn package` from the root direct
for example:

```
$ java -jar target/jphyloref-0.4.0.jar test src/test/resources/phylorefs/dummy1.owl
$ java -jar target/jphyloref-1.0.0.jar test src/test/resources/phylorefs/dummy1.owl
```

You can also download any published version of this software directly from Maven
Expand All @@ -38,7 +38,7 @@ If you have [Coursier] installed, you can download and run JPhyloRef in one step
by running:

```
$ coursier launch org.phyloref:jphyloref:0.4.0 -- test input.owl
$ coursier launch org.phyloref:jphyloref:1.0.0 -- test input.owl
```

# Command line options
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

<groupId>org.phyloref</groupId>
<artifactId>jphyloref</artifactId>
<version>0.4.0</version>
<version>1.0.0</version>
<packaging>jar</packaging>

<name>JPhyloRef</name>
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/org/phyloref/jphyloref/JPhyloRef.java
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ public class JPhyloRef {
private static final Logger logger = LoggerFactory.getLogger(JPhyloRef.class);

/** Version of JPhyloRef. */
public static final String VERSION = "0.4.0";
public static final String VERSION = "1.0.0";

/** List of all commands included in JPhyloRef. */
private List<Command> commands =
Expand Down

0 comments on commit b7e208f

Please sign in to comment.