Skip to content

Commit bcbcd1d

Browse files
committed
Bump to version 1.2.5
1 parent f1aef37 commit bcbcd1d

File tree

4 files changed

+9
-3
lines changed

4 files changed

+9
-3
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,12 @@
33

44
All notable changes to this project will be documented in this file.
55

6+
## [1.2.5] - 2023-04-05
7+
- Remove recursive parallel which seems to failed in some case.
8+
- Correct bug of contigs data final bin value from multiple recursive steps.
9+
- Add exception to avoid error while mutliple metator are started from the same
10+
working directory.
11+
612
## [1.2.4] - 2023-04-04
713
- Add a prefix option for fasta files.
814

Dockerfile

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

33
FROM adoptopenjdk/openjdk12
44

5-
LABEL Name=metator Version=1.2.4
5+
LABEL Name=metator Version=1.2.5
66

77
WORKDIR /app
88
COPY ./ /app

metator/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "1.2.4"
1+
__version__ = "1.2.5"

setup.py

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

3030
MAJOR = 1
3131
MINOR = 2
32-
MAINTENANCE = 4
32+
MAINTENANCE = 5
3333
VERSION = "{}.{}.{}".format(MAJOR, MINOR, MAINTENANCE)
3434

3535
LICENSE = "GPLv3"

0 commit comments

Comments
 (0)