Skip to content

Commit

Permalink
Release 3.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
egonw committed Dec 18, 2023
1 parent 58f42e0 commit 8af1e79
Show file tree
Hide file tree
Showing 29 changed files with 38 additions and 38 deletions.
4 changes: 2 additions & 2 deletions CITATION.cff
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ cff-version: 1.2.0
title: BridgeDb
message: 'If you use this software, please cite it as below.'
type: software
version: 3.1.0
date-released: '2023-11-05'
version: 3.1.1
date-released: '2023-12-18'
authors:
- given-names: Manas
family-names: Awasthi
Expand Down
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ Using BridgeDb dependencies
The [BridgeDb releases](https://github.com/bridgedb/BridgeDb/releases) are published to
[Maven Central](http://central.maven.org/maven2/org/bridgedb/), which means you can use the BridgeDb JARs without needing to compile BridgeDb.

Usage depends on which module you require. The examples below assumes artifact `org.bridgedb.bio` and version `3.1.0`:
Usage depends on which module you require. The examples below assumes artifact `org.bridgedb.bio` and version `3.1.1`:

For [Maven](https://maven.apache.org/):

Expand All @@ -24,27 +24,27 @@ For [Maven](https://maven.apache.org/):
<dependency>
<groupId>org.bridgedb</groupId>
<artifactId>org.bridgedb.bio</artifactId>
<version>3.1.0</version>
<version>3.1.1</version>
</dependency>
</dependencies>
```

For [Gradle](https://gradle.org/):

```gradle
compile group: 'org.bridgedb', name: 'org.bridgedb.bio', version: '3.1.0'
compile group: 'org.bridgedb', name: 'org.bridgedb.bio', version: '3.1.1'
```

For [Ivy](http://ant.apache.org/ivy/):

```xml
<dependency org="org.bridgedb" name="org.bridgedb.bio" rev="3.1.0"/>
<dependency org="org.bridgedb" name="org.bridgedb.bio" rev="3.1.1"/>
```

For [Buildr](https://buildr.apache.org/):

```buildr
'org.bridgedb:org.bridgedb.bio:jar:3.1.0'
'org.bridgedb:org.bridgedb.bio:jar:3.1.1'
```


Expand Down Expand Up @@ -133,7 +133,7 @@ To make the release, run the following commands. Mind you, this requires you
to have an approved Sonatype (http://oss.sonatype.org/) account with push rights:

```shell
mvn versions:set -DnewVersion=3.1.0
mvn versions:set -DnewVersion=3.1.2-SNAPSHOT
mvn clean deploy
```

Expand Down
2 changes: 1 addition & 1 deletion examples/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<parent>
<artifactId>bridgedb-bundle</artifactId>
<groupId>org.bridgedb</groupId>
<version>3.1.1-SNAPSHOT</version>
<version>3.1.1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.bridgedb.examples</groupId>
Expand Down
2 changes: 1 addition & 1 deletion org.bridgedb.bio/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
<parent>
<artifactId>bridgedb-bundle</artifactId>
<groupId>org.bridgedb</groupId>
<version>3.1.1-SNAPSHOT</version>
<version>3.1.1</version>
</parent>

<build>
Expand Down
2 changes: 1 addition & 1 deletion org.bridgedb.file.orthoxml/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<parent>
<artifactId>bridgedb-bundle</artifactId>
<groupId>org.bridgedb</groupId>
<version>3.1.1-SNAPSHOT</version>
<version>3.1.1</version>
</parent>

<build>
Expand Down
2 changes: 1 addition & 1 deletion org.bridgedb.gui/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<parent>
<artifactId>bridgedb-bundle</artifactId>
<groupId>org.bridgedb</groupId>
<version>3.1.1-SNAPSHOT</version>
<version>3.1.1</version>
</parent>

<build>
Expand Down
2 changes: 1 addition & 1 deletion org.bridgedb.rdb.construct/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<parent>
<artifactId>bridgedb-bundle</artifactId>
<groupId>org.bridgedb</groupId>
<version>3.1.1-SNAPSHOT</version>
<version>3.1.1</version>
</parent>

<build>
Expand Down
2 changes: 1 addition & 1 deletion org.bridgedb.rdb/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<parent>
<artifactId>bridgedb-bundle</artifactId>
<groupId>org.bridgedb</groupId>
<version>3.1.1-SNAPSHOT</version>
<version>3.1.1</version>
</parent>

<build>
Expand Down
2 changes: 1 addition & 1 deletion org.bridgedb.rdf/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<parent>
<artifactId>bridgedb-bundle</artifactId>
<groupId>org.bridgedb</groupId>
<version>3.1.1-SNAPSHOT</version>
<version>3.1.1</version>
</parent>

<build>
Expand Down
2 changes: 1 addition & 1 deletion org.bridgedb.sql/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<parent>
<artifactId>bridgedb-bundle</artifactId>
<groupId>org.bridgedb</groupId>
<version>3.1.1-SNAPSHOT</version>
<version>3.1.1</version>
</parent>

<build>
Expand Down
8 changes: 4 additions & 4 deletions org.bridgedb.tools.batchmapper/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<parent>
<artifactId>bridgedb-bundle</artifactId>
<groupId>org.bridgedb</groupId>
<version>3.1.1-SNAPSHOT</version>
<version>3.1.1</version>
</parent>

<build>
Expand All @@ -33,19 +33,19 @@
<dependency>
<groupId>org.bridgedb</groupId>
<artifactId>org.bridgedb</artifactId>
<version>3.1.1-SNAPSHOT</version>
<version>3.1.1</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.bridgedb</groupId>
<artifactId>org.bridgedb.bio</artifactId>
<version>3.1.1-SNAPSHOT</version>
<version>3.1.1</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.bridgedb</groupId>
<artifactId>org.bridgedb.rdb</artifactId>
<version>3.1.1-SNAPSHOT</version>
<version>3.1.1</version>
<scope>compile</scope>
</dependency>
</dependencies>
Expand Down
2 changes: 1 addition & 1 deletion org.bridgedb.tools.info/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<parent>
<artifactId>bridgedb-bundle</artifactId>
<groupId>org.bridgedb</groupId>
<version>3.1.1-SNAPSHOT</version>
<version>3.1.1</version>
</parent>

<build>
Expand Down
2 changes: 1 addition & 1 deletion org.bridgedb.tools.qc/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<parent>
<artifactId>bridgedb-bundle</artifactId>
<groupId>org.bridgedb</groupId>
<version>3.1.1-SNAPSHOT</version>
<version>3.1.1</version>
</parent>

<build>
Expand Down
2 changes: 1 addition & 1 deletion org.bridgedb.tools.voidtool/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<parent>
<artifactId>bridgedb-bundle</artifactId>
<groupId>org.bridgedb</groupId>
<version>3.1.1-SNAPSHOT</version>
<version>3.1.1</version>
</parent>

<build>
Expand Down
2 changes: 1 addition & 1 deletion org.bridgedb.uri.api/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<parent>
<artifactId>bridgedb-bundle</artifactId>
<groupId>org.bridgedb</groupId>
<version>3.1.1-SNAPSHOT</version>
<version>3.1.1</version>
</parent>

<build>
Expand Down
2 changes: 1 addition & 1 deletion org.bridgedb.uri.loader/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<parent>
<artifactId>bridgedb-bundle</artifactId>
<groupId>org.bridgedb</groupId>
<version>3.1.1-SNAPSHOT</version>
<version>3.1.1</version>
</parent>

<dependencies>
Expand Down
2 changes: 1 addition & 1 deletion org.bridgedb.uri.sql/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<parent>
<artifactId>bridgedb-bundle</artifactId>
<groupId>org.bridgedb</groupId>
<version>3.1.1-SNAPSHOT</version>
<version>3.1.1</version>
</parent>

<build>
Expand Down
2 changes: 1 addition & 1 deletion org.bridgedb.uri.ws.client/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
<parent>
<artifactId>bridgedb-bundle</artifactId>
<groupId>org.bridgedb</groupId>
<version>3.1.1-SNAPSHOT</version>
<version>3.1.1</version>
</parent>

<build>
Expand Down
2 changes: 1 addition & 1 deletion org.bridgedb.uri.ws.core/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
<parent>
<artifactId>bridgedb-bundle</artifactId>
<groupId>org.bridgedb</groupId>
<version>3.1.1-SNAPSHOT</version>
<version>3.1.1</version>
</parent>

<build>
Expand Down
2 changes: 1 addition & 1 deletion org.bridgedb.uri.ws.server/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
<parent>
<artifactId>bridgedb-bundle</artifactId>
<groupId>org.bridgedb</groupId>
<version>3.1.1-SNAPSHOT</version>
<version>3.1.1</version>
</parent>

<build>
Expand Down
2 changes: 1 addition & 1 deletion org.bridgedb.utils/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<parent>
<artifactId>bridgedb-bundle</artifactId>
<groupId>org.bridgedb</groupId>
<version>3.1.1-SNAPSHOT</version>
<version>3.1.1</version>
</parent>

<build>
Expand Down
2 changes: 1 addition & 1 deletion org.bridgedb.webservice.biomart/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
<parent>
<artifactId>bridgedb-bundle</artifactId>
<groupId>org.bridgedb</groupId>
<version>3.1.1-SNAPSHOT</version>
<version>3.1.1</version>
</parent>

<build>
Expand Down
2 changes: 1 addition & 1 deletion org.bridgedb.webservice.bridgerest/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
<parent>
<artifactId>bridgedb-bundle</artifactId>
<groupId>org.bridgedb</groupId>
<version>3.1.1-SNAPSHOT</version>
<version>3.1.1</version>
</parent>

<build>
Expand Down
2 changes: 1 addition & 1 deletion org.bridgedb.ws.client/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
<parent>
<artifactId>bridgedb-bundle</artifactId>
<groupId>org.bridgedb</groupId>
<version>3.1.1-SNAPSHOT</version>
<version>3.1.1</version>
</parent>

<build>
Expand Down
2 changes: 1 addition & 1 deletion org.bridgedb.ws.core/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
<parent>
<artifactId>bridgedb-bundle</artifactId>
<groupId>org.bridgedb</groupId>
<version>3.1.1-SNAPSHOT</version>
<version>3.1.1</version>
</parent>

<build>
Expand Down
2 changes: 1 addition & 1 deletion org.bridgedb.ws.server/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
<parent>
<artifactId>bridgedb-bundle</artifactId>
<groupId>org.bridgedb</groupId>
<version>3.1.1-SNAPSHOT</version>
<version>3.1.1</version>
</parent>

<build>
Expand Down
2 changes: 1 addition & 1 deletion org.bridgedb/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
<parent>
<artifactId>bridgedb-bundle</artifactId>
<groupId>org.bridgedb</groupId>
<version>3.1.1-SNAPSHOT</version>
<version>3.1.1</version>
</parent>

<build>
Expand Down
2 changes: 1 addition & 1 deletion org.bridgedb/src/main/resources/version.props
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
# Current version of BridgeDb
bridgedb.version=3.1.0
bridgedb.version=3.1.1
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.bridgedb</groupId>
<artifactId>bridgedb-bundle</artifactId>
<packaging>pom</packaging>
<version>3.1.1-SNAPSHOT</version>
<version>3.1.1</version>
<name>BridgeDb bundle</name>
<description>
BridgeDb is a framework for finding and mapping equivalent database
Expand Down

0 comments on commit 8af1e79

Please sign in to comment.