Skip to content

Commit

Permalink
Merge pull request #17 from maxulysse/prepare-rc-0_0_2
Browse files Browse the repository at this point in the history
Release Candidate 0.0.2
  • Loading branch information
maxulysse authored Oct 1, 2024
2 parents 56d5054 + 91fd739 commit f309858
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion bump-version.sh
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ fi
sed -i -e "0,/<version>/{s/<version>.*<\\/version>/<version>$version<\\/version>/}" ./pom.xml
sed -i -e "s/moduleVersion=.*/moduleVersion=$version/" ./src/main/resources/META-INF/nf-test-plugin

if [[ $version != *dev ]]
if [ $version != *dev ]
then
sed -i -e "s/load \"nft-utils@.*\"/load \"nft-utils@$version\"/" ./docs/index.md
fi
Expand Down
2 changes: 1 addition & 1 deletion dependency-reduced-pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<groupId>com.nf-core</groupId>
<artifactId>nft-utils</artifactId>
<name>nft-utils</name>
<version>0.0.1</version>
<version>0.0.2</version>
<description>nf-test plugin that adds commonly used utility functions</description>
<url>https://github.com/nf-core/nft-utils</url>
<licenses>
Expand Down
2 changes: 1 addition & 1 deletion docs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ It's a good idea to specify a version which you can do using the `@` symbol, how
```groovy title="nf-test.config"
config {
plugins {
load "nft-utils@0.1.0"
load "nft-utils@0.0.2"
}
}
```
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>com.nf-core</groupId>
<artifactId>nft-utils</artifactId>
<version>0.0.1</version>
<version>0.0.2</version>
<packaging>jar</packaging>

<name>nft-utils</name>
Expand Down
2 changes: 1 addition & 1 deletion src/main/resources/META-INF/nf-test-plugin
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
moduleName=nft-utils
moduleVersion=0.0.1
moduleVersion=0.0.2
moduleAuthors=nf-core
extensionMethods=nf_core.nf.test.utils.Methods

0 comments on commit f309858

Please sign in to comment.