Skip to content

Commit e4c3dcf

Browse files
authored
Merge pull request #57 from nf-core/bump_version
feat: bump version to 0.0.8
2 parents 145caed + cb3938b commit e4c3dcf

File tree

5 files changed

+103
-8
lines changed

5 files changed

+103
-8
lines changed

CHANGELOG.md

Lines changed: 99 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,106 @@
11
# Changelog
22

3-
## dev
3+
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/)
4+
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
5+
6+
## 0.0.8
47

58
### New features
69

7-
- Added the `listToMD5` function
10+
- Added the `curlAndExtract` function to download and extract `tar` and `zip` files during the nf-test setup stage.
11+
12+
## 0.0.7
13+
14+
### Added
15+
16+
- Added the OutputSanitizer class with the sanitizeOutput() method to process and clean output channels, supporting options like unstableKeys to handle unstable file outputs by @nvnieuwk
17+
18+
### Fixed
19+
20+
- nfcoreLibraryLinker: exit gracefully when directories don't exist by @prototaxites
21+
22+
## 0.0.6
23+
24+
### Added
25+
26+
- Add stdout and stderr helper function for better snapshot by @maxulysse
27+
28+
### Fixed
29+
30+
- improve docs by @maxulysse
31+
32+
## 0.0.5
33+
34+
### Added
35+
36+
- Add functions for managing dependencies on nf-core modules by @prototaxites
37+
38+
### Fixed
39+
40+
- Fix rendering of cloning code blocks by @TCLamnidis
41+
42+
### New Contributors
43+
44+
- @prototaxites
45+
- @TCLamnidis
46+
47+
## 0.0.4
48+
49+
### Added
50+
51+
- Add listToMD5 by @nvnieuwk in #26
52+
53+
### Fixed
54+
55+
- Improve user eligibility for getAllFilesInDir() docs by @jfy133
56+
- fix missing ',' in docs code by @Joon-Klaps
57+
- fix listToMD5 by @maxulysse
58+
- Improve remove from yaml map by @maxulysse
59+
60+
### New Contributors
61+
62+
- @jfy133
63+
- @Joon-Klaps
64+
- @itrujnara
65+
66+
## 0.0.3
67+
68+
### Added
69+
70+
- Add wrapper functions for getAllFilesFromDir with named parameters by @lukfor
71+
- add include in getAllFilesFromDir by @maxulysse
72+
- add removeFromYamlMap by @maxulysse
73+
74+
### Fixed
75+
76+
- Move all docs in its own folder by @maxulysse
77+
78+
### New Contributors
79+
80+
- @lukfor
81+
82+
## 0.0.2
83+
84+
### Added
85+
86+
- Add maven to gitpod install by @nvnieuwk
87+
- Add getRelativePath() function by @maxulysse
88+
89+
### New Contributors
90+
91+
- @nvnieuwk
92+
93+
## 0.0.1
94+
95+
First release of nft-utils 🍏🚀
96+
97+
### Added
98+
99+
- add removeNextflowVersion function by @maxulysse
100+
- Add getAllFilesFromDir function by @maxulysse
101+
- Add docs by @maxulysse
8102

9-
### Fixes
103+
### New Contributors
10104

11-
Fixes are written here
105+
- @adamrtalbot
106+
- @maxulysse

dependency-reduced-pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<groupId>com.nf-core</groupId>
55
<artifactId>nft-utils</artifactId>
66
<name>nft-utils</name>
7-
<version>0.0.7</version>
7+
<version>0.0.8</version>
88
<description>nf-test plugin that adds commonly used utility functions</description>
99
<url>https://github.com/nf-core/nft-utils</url>
1010
<licenses>

docs/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ To start using the plugin please add it to your `nf-test.config` file:
1010
```groovy title="nf-test.config"
1111
config {
1212
plugins {
13-
load "nft-utils@0.0.7"
13+
load "nft-utils@0.0.8"
1414
}
1515
}
1616
```

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
<groupId>com.nf-core</groupId>
77
<artifactId>nft-utils</artifactId>
8-
<version>0.0.7</version>
8+
<version>0.0.8</version>
99
<packaging>jar</packaging>
1010

1111
<name>nft-utils</name>
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
moduleName=nft-utils
2-
moduleVersion=0.0.7
2+
moduleVersion=0.0.8
33
moduleAuthors=nf-core
44
extensionMethods=nf_core.nf.test.utils.Methods

0 commit comments

Comments
 (0)