Skip to content

Commit

Permalink
Bump version to 1.6.0
Browse files Browse the repository at this point in the history
  • Loading branch information
jamesaoverton committed Mar 4, 2020
1 parent dbbebe2 commit ab40b6b
Show file tree
Hide file tree
Showing 5 changed files with 28 additions and 9 deletions.
23 changes: 21 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,22 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [1.6.0] - 2020-03-03
## [1.6.0] - 2020-03-04

### Added

- Add [`collapse`] command [#578]
- Add support for anonymous class assertions in templates [#630]
- Add maven plugin to update OBO context [#608]
- Add more efficient mode for `reduce` when only considering named classes [#619]

### Changed
- Switch whitespace queries to regex [#606]
- Update nucleus import for tests [#597]

### Fixed
- Fix warning when term is in imports (extract command) [#625]
- Fix index out of bounds error in extract [#617]
- Use URIs to fix resource path issues [#603]

## [1.5.0] - 2019-11-28

Expand Down Expand Up @@ -156,6 +167,14 @@ First official release of ROBOT!
[`report`]: http://robot.obolibrary.org/report
[`template`]: http://robot.obolibrary.org/template

[#630]: https://github.com/ontodev/robot/issues/630
[#625]: https://github.com/ontodev/robot/issues/625
[#619]: https://github.com/ontodev/robot/issues/619
[#617]: https://github.com/ontodev/robot/issues/617
[#608]: https://github.com/ontodev/robot/issues/608
[#606]: https://github.com/ontodev/robot/issues/606
[#603]: https://github.com/ontodev/robot/issues/603
[#597]: https://github.com/ontodev/robot/issues/597
[#584]: https://github.com/ontodev/robot/issues/584
[#579]: https://github.com/ontodev/robot/issues/579
[#578]: https://github.com/ontodev/robot/issues/579
Expand Down
4 changes: 2 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

<groupId>org.obolibrary.robot</groupId>
<artifactId>robot</artifactId>
<version>1.6.0-SNAPSHOT</version>
<version>1.6.0</version>
<packaging>pom</packaging>

<name>robot</name>
Expand Down Expand Up @@ -214,7 +214,7 @@
<plugin>
<groupId>org.obolibrary.robot</groupId>
<artifactId>robot-maven-plugin</artifactId>
<version>1.6.0-SNAPSHOT</version>
<version>1.6.0</version>
</plugin>
</plugins>
</build>
Expand Down
2 changes: 1 addition & 1 deletion robot-command/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<parent>
<groupId>org.obolibrary.robot</groupId>
<artifactId>robot</artifactId>
<version>1.6.0-SNAPSHOT</version>
<version>1.6.0</version>
</parent>
<artifactId>robot-command</artifactId>
<name>robot-command</name>
Expand Down
2 changes: 1 addition & 1 deletion robot-core/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<parent>
<groupId>org.obolibrary.robot</groupId>
<artifactId>robot</artifactId>
<version>1.6.0-SNAPSHOT</version>
<version>1.6.0</version>
</parent>
<artifactId>robot-core</artifactId>
<name>robot-core</name>
Expand Down
6 changes: 3 additions & 3 deletions robot-maven-plugin/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,11 @@
<parent>
<groupId>org.obolibrary.robot</groupId>
<artifactId>robot</artifactId>
<version>1.6.0-SNAPSHOT</version>
<version>1.6.0</version>
</parent>

<artifactId>robot-maven-plugin</artifactId>
<version>1.6.0-SNAPSHOT</version>
<version>1.6.0</version>
<packaging>maven-plugin</packaging>
<name>robot-maven-plugin</name>

Expand Down Expand Up @@ -55,7 +55,7 @@
<plugin>
<groupId>org.obolibrary.robot</groupId>
<artifactId>robot-maven-plugin</artifactId>
<version>1.6.0-SNAPSHOT</version>
<version>1.6.0</version>
</plugin>
</plugins>
</build>
Expand Down

0 comments on commit ab40b6b

Please sign in to comment.