Skip to content

Commit

Permalink
Make release v2.1.1.
Browse files Browse the repository at this point in the history
  • Loading branch information
ielis committed Apr 17, 2024
1 parent a24872a commit cccf148
Show file tree
Hide file tree
Showing 9 changed files with 20 additions and 19 deletions.
8 changes: 5 additions & 3 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,11 @@
Changelog
=========

------
latest
------
-----
2.1.1
-----

- add *Past medical history* to `Aspect` enum

-----
2.1.0
Expand Down
17 changes: 8 additions & 9 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@ associate phenotype annotation files.

- **Language/Platform:** Java >=11
- **License:** BSD 3-Clause Clear
- **Version:** 2.1.0
- **Authors:**
- Sebastian Bauer
- Peter N. Robinson
Expand All @@ -34,25 +33,25 @@ associate phenotype annotation files.
- `phenol-cli` for performing empirical score distribution computation as a stand-alone program.

## Usage
We recommend indicating the phenol version in the `properties` section of the pom file of the application.
We recommend importing the `phenol` modules that are needed for your application.

```
<properties>
(...)
<phenol.version>2.1.0</phenol.version>
</properties>
```
For instance:

Then import the phenol modules that are needed for your application.
```xml
<dependency>
<groupId>org.monarchinitiative.phenol</groupId>
<artifactId>phenol-core</artifactId>
<version>${phenol.version}</version>
</dependency>
<dependency>
<groupId>org.monarchinitiative.phenol</groupId>
<artifactId>phenol-io</artifactId>
<version>${phenol.version}</version>
</dependency>
<!-- ... and other modules -->
```

where `${phenol.version}` corresponds to the desired version, such as `2.1.0`.

## History
Phenol was initially forked from [ontolib]([https://github.com/Phenomics/ontolib) in February 2018, but was
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.1'
# The full version, including alpha/beta/rc tags.
release = '2.1.0'
release = '2.1.1'

# -- 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.1.1-SNAPSHOT</version>
<version>2.1.1</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.1.1-SNAPSHOT</version>
<version>2.1.1</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.1.1-SNAPSHOT</version>
<version>2.1.1</version>
</parent>

<artifactId>phenol-cli</artifactId>
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.1.1-SNAPSHOT</version>
<version>2.1.1</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.1.1-SNAPSHOT</version>
<version>2.1.1</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.1.1-SNAPSHOT</version>
<version>2.1.1</version>

<name>Phenol</name>

Expand Down

0 comments on commit cccf148

Please sign in to comment.