Skip to content

Commit 1d6691a

Browse files
committed
Bumped the version to 3.0.26
1 parent bcea077 commit 1d6691a

File tree

29 files changed

+39
-39
lines changed

29 files changed

+39
-39
lines changed

CITATION.cff

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@ cff-version: 1.2.0
22
title: BridgeDb
33
message: 'If you use this software, please cite it as below.'
44
type: software
5-
version: 3.0.25
6-
date-released: '2023-12-02'
5+
version: 3.0.26
6+
date-released: '2024-06-03'
77
authors:
88
- given-names: Manas
99
family-names: Awasthi

README.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ Using BridgeDb dependencies
1515
The [BridgeDb releases](https://github.com/bridgedb/BridgeDb/releases) are published to
1616
[Maven Central](https://search.maven.org/artifact/org.bridgedb/bridgedb-bundle), which means you can use the BridgeDb JARs without needing to compile BridgeDb.
1717

18-
Usage depends on which module you require. The examples below assumes artifact `org.bridgedb.bio` and version `3.0.25`:
18+
Usage depends on which module you require. The examples below assumes artifact `org.bridgedb.bio` and version `3.0.26`:
1919

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

@@ -24,27 +24,27 @@ For [Maven](https://maven.apache.org/):
2424
<dependency>
2525
<groupId>org.bridgedb</groupId>
2626
<artifactId>org.bridgedb.bio</artifactId>
27-
<version>3.0.25</version>
27+
<version>3.0.26</version>
2828
</dependency>
2929
</dependencies>
3030
```
3131

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

3434
```gradle
35-
compile group: 'org.bridgedb', name: 'org.bridgedb.bio', version: '3.0.25'
35+
compile group: 'org.bridgedb', name: 'org.bridgedb.bio', version: '3.0.26'
3636
```
3737

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

4040
```xml
41-
<dependency org="org.bridgedb" name="org.bridgedb.bio" rev="3.0.25"/>
41+
<dependency org="org.bridgedb" name="org.bridgedb.bio" rev="3.0.26"/>
4242
```
4343

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

4646
```buildr
47-
'org.bridgedb:org.bridgedb.bio:jar:3.0.25'
47+
'org.bridgedb:org.bridgedb.bio:jar:3.0.26'
4848
```
4949

5050

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

135135
```shell
136-
mvn versions:set -DnewVersion=3.0.25
136+
mvn versions:set -DnewVersion=3.0.26
137137
mvn clean deploy
138138
```
139139

@@ -143,7 +143,7 @@ and everything.
143143
To make a development (SNAPSHOT) release, use:
144144

145145
```shell
146-
mvn versions:set -DnewVersion=3.0.26-SNAPSHOT
146+
mvn versions:set -DnewVersion=3.0.27-SNAPSHOT
147147
mvn clean deploy
148148
```
149149

examples/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<parent>
44
<artifactId>bridgedb-bundle</artifactId>
55
<groupId>org.bridgedb</groupId>
6-
<version>3.0.25</version>
6+
<version>3.0.26</version>
77
</parent>
88
<modelVersion>4.0.0</modelVersion>
99
<groupId>org.bridgedb.examples</groupId>

org.bridgedb.bio/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
<parent>
99
<artifactId>bridgedb-bundle</artifactId>
1010
<groupId>org.bridgedb</groupId>
11-
<version>3.0.25</version>
11+
<version>3.0.26</version>
1212
</parent>
1313

1414
<build>

org.bridgedb.file.orthoxml/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<artifactId>bridgedb-bundle</artifactId>
88
<groupId>org.bridgedb</groupId>
9-
<version>3.0.25</version>
9+
<version>3.0.26</version>
1010
</parent>
1111

1212
<build>

org.bridgedb.gui/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<parent>
88
<artifactId>bridgedb-bundle</artifactId>
99
<groupId>org.bridgedb</groupId>
10-
<version>3.0.25</version>
10+
<version>3.0.26</version>
1111
</parent>
1212

1313
<build>

org.bridgedb.rdb.construct/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<parent>
88
<artifactId>bridgedb-bundle</artifactId>
99
<groupId>org.bridgedb</groupId>
10-
<version>3.0.25</version>
10+
<version>3.0.26</version>
1111
</parent>
1212

1313
<build>

org.bridgedb.rdb/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<parent>
88
<artifactId>bridgedb-bundle</artifactId>
99
<groupId>org.bridgedb</groupId>
10-
<version>3.0.25</version>
10+
<version>3.0.26</version>
1111
</parent>
1212

1313
<build>

org.bridgedb.rdf/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<artifactId>bridgedb-bundle</artifactId>
88
<groupId>org.bridgedb</groupId>
9-
<version>3.0.25</version>
9+
<version>3.0.26</version>
1010
</parent>
1111

1212
<build>

org.bridgedb.sql/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<parent>
88
<artifactId>bridgedb-bundle</artifactId>
99
<groupId>org.bridgedb</groupId>
10-
<version>3.0.25</version>
10+
<version>3.0.26</version>
1111
</parent>
1212

1313
<build>

0 commit comments

Comments
 (0)