Skip to content

Commit

Permalink
Release 3.0.18
Browse files Browse the repository at this point in the history
  • Loading branch information
egonw committed Dec 8, 2022
1 parent ee28a4c commit 3376c49
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 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.0.17
date-released: '2022-08-10'
version: 3.0.18
date-released: '2022-12-08'
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.0.17`:
Usage depends on which module you require. The examples below assumes artifact `org.bridgedb.bio` and version `3.0.18`:

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.0.17</version>
<version>3.0.18</version>
</dependency>
</dependencies>
```

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

```gradle
compile group: 'org.bridgedb', name: 'org.bridgedb.bio', version: '3.0.17'
compile group: 'org.bridgedb', name: 'org.bridgedb.bio', version: '3.0.18'
```

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

```xml
<dependency org="org.bridgedb" name="org.bridgedb.bio" rev="3.0.17"/>
<dependency org="org.bridgedb" name="org.bridgedb.bio" rev="3.0.18"/>
```

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

```buildr
'org.bridgedb:org.bridgedb.bio:jar:3.0.17'
'org.bridgedb:org.bridgedb.bio:jar:3.0.18'
```


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.0.17-SNAPSHOT
mvn versions:set -DnewVersion=3.0.19-SNAPSHOT
mvn clean deploy -P release
```

Expand Down
2 changes: 1 addition & 1 deletion org.bridgedb/version.props
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
# Current version of BridgeDb
bridgedb.version=3.0.17
bridgedb.version=3.0.18

0 comments on commit 3376c49

Please sign in to comment.