Skip to content

Commit

Permalink
Set version to 2.0.4, update changelog.
Browse files Browse the repository at this point in the history
  • Loading branch information
ielis committed Nov 20, 2023
1 parent 2a5291d commit 4fdfd30
Show file tree
Hide file tree
Showing 10 changed files with 22 additions and 10 deletions.
12 changes: 12 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,18 @@ Changelog
latest
------

-----
2.0.4
-----

Minor release, no breaking changes.

- Fix broken implementation of `MinimalOntology.subOntology` method.
- Simplify implementation of CSR adjacency matrix that backs `OntologyGraph` by default.
- Improve `OntologyGraph` test coverage.
- Add microbenchmark to benchmark the ontology loading.
- Update dependencies, remove Guava usage.

------
2.0.3
------
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ associate phenotype annotation files.

- **Language/Platform:** Java >=11
- **License:** BSD 3-Clause Clear
- **Version:** 2.0.3
- **Version:** 2.0.4
- **Authors:**
- Sebastian Bauer
- Peter N. Robinson
Expand All @@ -39,7 +39,7 @@ We recommend indicating the phenol version in the `properties` section of the po
```
<properties>
(...)
<phenol.version>2.0.3</phenol.version>
<phenol.version>2.0.4</phenol.version>
</properties>
```

Expand Down
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
# The short X.Y version.
version = '2.0'
# The full version, including alpha/beta/rc tags.
release = '2.0.3'
release = '2.0.4'

# -- General configuration ---------------------------------------------------
# https://www.sphinx-doc.org/en/master/usage/configuration.html#general-configuration
Expand Down
2 changes: 1 addition & 1 deletion phenol-analysis/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<parent>
<groupId>org.monarchinitiative.phenol</groupId>
<artifactId>phenol</artifactId>
<version>2.0.4-SNAPSHOT</version>
<version>2.0.4</version>
</parent>

<artifactId>phenol-analysis</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion phenol-annotations/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<parent>
<groupId>org.monarchinitiative.phenol</groupId>
<artifactId>phenol</artifactId>
<version>2.0.4-SNAPSHOT</version>
<version>2.0.4</version>
</parent>

<artifactId>phenol-annotations</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion phenol-cli/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<parent>
<groupId>org.monarchinitiative.phenol</groupId>
<artifactId>phenol</artifactId>
<version>2.0.4-SNAPSHOT</version>
<version>2.0.4</version>
</parent>

<artifactId>phenol-cli</artifactId>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

@CommandLine.Command(name = "phenol demo",
mixinStandardHelpOptions = true,
version = "2.0.3",
version = "2.0.4",
description = "phenol demo programs")
public class Main implements Callable<Integer> {
private static final Logger LOGGER = LoggerFactory.getLogger(Main.class);
Expand Down
2 changes: 1 addition & 1 deletion phenol-core/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<parent>
<groupId>org.monarchinitiative.phenol</groupId>
<artifactId>phenol</artifactId>
<version>2.0.4-SNAPSHOT</version>
<version>2.0.4</version>
</parent>

<artifactId>phenol-core</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion phenol-io/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<parent>
<groupId>org.monarchinitiative.phenol</groupId>
<artifactId>phenol</artifactId>
<version>2.0.4-SNAPSHOT</version>
<version>2.0.4</version>
</parent>

<artifactId>phenol-io</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<groupId>org.monarchinitiative.phenol</groupId>
<artifactId>phenol</artifactId>
<packaging>pom</packaging>
<version>2.0.4-SNAPSHOT</version>
<version>2.0.4</version>

<name>Phenol</name>

Expand Down

0 comments on commit 4fdfd30

Please sign in to comment.