diff --git a/CHANGELOG.rst b/CHANGELOG.rst
index 67b846eee..7d83e822f 100644
--- a/CHANGELOG.rst
+++ b/CHANGELOG.rst
@@ -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
------
diff --git a/README.md b/README.md
index 56df7ba8a..412c35f4a 100644
--- a/README.md
+++ b/README.md
@@ -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
@@ -39,7 +39,7 @@ We recommend indicating the phenol version in the `properties` section of the po
```
(...)
- 2.0.3
+ 2.0.4
```
diff --git a/docs/conf.py b/docs/conf.py
index 4333a468b..6b7d2b360 100644
--- a/docs/conf.py
+++ b/docs/conf.py
@@ -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
diff --git a/phenol-analysis/pom.xml b/phenol-analysis/pom.xml
index 740c80834..906dd4d14 100644
--- a/phenol-analysis/pom.xml
+++ b/phenol-analysis/pom.xml
@@ -4,7 +4,7 @@
org.monarchinitiative.phenol
phenol
- 2.0.4-SNAPSHOT
+ 2.0.4
phenol-analysis
diff --git a/phenol-annotations/pom.xml b/phenol-annotations/pom.xml
index 45d97dee5..9695d0c2a 100644
--- a/phenol-annotations/pom.xml
+++ b/phenol-annotations/pom.xml
@@ -4,7 +4,7 @@
org.monarchinitiative.phenol
phenol
- 2.0.4-SNAPSHOT
+ 2.0.4
phenol-annotations
diff --git a/phenol-cli/pom.xml b/phenol-cli/pom.xml
index 916e4d15d..b90126acf 100644
--- a/phenol-cli/pom.xml
+++ b/phenol-cli/pom.xml
@@ -4,7 +4,7 @@
org.monarchinitiative.phenol
phenol
- 2.0.4-SNAPSHOT
+ 2.0.4
phenol-cli
diff --git a/phenol-cli/src/main/java/org/monarchinitiative/phenol/cli/Main.java b/phenol-cli/src/main/java/org/monarchinitiative/phenol/cli/Main.java
index 15d089f0d..1105dcf91 100644
--- a/phenol-cli/src/main/java/org/monarchinitiative/phenol/cli/Main.java
+++ b/phenol-cli/src/main/java/org/monarchinitiative/phenol/cli/Main.java
@@ -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 {
private static final Logger LOGGER = LoggerFactory.getLogger(Main.class);
diff --git a/phenol-core/pom.xml b/phenol-core/pom.xml
index d86111bcd..c13738f05 100644
--- a/phenol-core/pom.xml
+++ b/phenol-core/pom.xml
@@ -4,7 +4,7 @@
org.monarchinitiative.phenol
phenol
- 2.0.4-SNAPSHOT
+ 2.0.4
phenol-core
diff --git a/phenol-io/pom.xml b/phenol-io/pom.xml
index 2593c6d53..19228c492 100644
--- a/phenol-io/pom.xml
+++ b/phenol-io/pom.xml
@@ -4,7 +4,7 @@
org.monarchinitiative.phenol
phenol
- 2.0.4-SNAPSHOT
+ 2.0.4
phenol-io
diff --git a/pom.xml b/pom.xml
index 4888c2783..a8882ef29 100644
--- a/pom.xml
+++ b/pom.xml
@@ -5,7 +5,7 @@
org.monarchinitiative.phenol
phenol
pom
- 2.0.4-SNAPSHOT
+ 2.0.4
Phenol