Skip to content

Commit 54f4ee2

Browse files
committed
Preparing 0.5.0 release
1 parent 728f09d commit 54f4ee2

File tree

6 files changed

+20
-12
lines changed

6 files changed

+20
-12
lines changed

CHANGELOG.md

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
66

77
## [Unreleased]
88

9-
## [0.4.0] - 2022-22-11
9+
## [0.5.0] - 2023-07-18
10+
11+
### Fixed
12+
13+
- Properly handling Ns in the MSA, and in the denovo sequences (see [PR #60](https://github.com/iqbal-lab-org/make_prg/pull/60)
14+
and [PR #61](https://github.com/iqbal-lab-org/make_prg/pull/61) for more details);
15+
16+
## [0.4.0] - 2022-11-22
1017

1118
### Added
1219
- `make_prg update` command, that updates PRGs without requiring to rebuild MSAs and the PRG itself from scratch;
@@ -103,8 +110,9 @@ operations.
103110
source project CHANGELOG.
104111

105112

106-
[Unreleased]: https://github.com/iqbal-lab-org/make_prg/compare/0.4.0...HEAD
113+
[Unreleased]: https://github.com/iqbal-lab-org/make_prg/compare/0.5.0...HEAD
107114

115+
[0.5.0]: https://github.com/iqbal-lab-org/make_prg/compare/0.4.0...0.5.0
108116
[0.4.0]: https://github.com/iqbal-lab-org/make_prg/compare/0.2.0...0.4.0
109117
[0.2.0]: https://github.com/iqbal-lab-org/make_prg/compare/0.1.1...0.2.0
110118
[0.1.1]: https://github.com/iqbal-lab-org/make_prg/compare/0.1.0...0.1.1

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
# To build: docker build . -t make_prg:0.4.0
1+
# To build: docker build . -t make_prg:0.5.0
22
# Tagged as such, it can be used in scripts/build_precompiled_binary/build_precompiled_binary.sh to build the precompiled binary
3-
FROM python:3.10-slim
3+
FROM python:3.8-slim
44

55
ENV DEBIAN_FRONTEND=noninteractive
66

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -37,13 +37,13 @@ In this binary, all libraries are linked statically. Compilation is done using [
3737

3838
#### Download
3939
```
40-
wget https://github.com/iqbal-lab-org/make_prg/releases/download/0.4.0/make_prg_0.4.0
40+
wget https://github.com/iqbal-lab-org/make_prg/releases/download/0.5.0/make_prg_0.5.0
4141
```
4242

4343
#### Run
4444
```
45-
chmod +x make_prg_0.4.0
46-
./make_prg_0.4.0 -h
45+
chmod +x make_prg_0.5.0
46+
./make_prg_0.5.0 -h
4747
```
4848

4949
### pip
@@ -77,7 +77,7 @@ The above will use the latest version. If you want to specify a version then use
7777
[tag][quay.io] (or commit) like so.
7878

7979
```sh
80-
VERSION="0.4.0"
80+
VERSION="0.5.0"
8181
URI="docker://quay.io/iqballab/make_prg:${VERSION}"
8282
```
8383

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "make_prg"
3-
version = "0.4.0"
3+
version = "0.5.0"
44
description = "Code to create a PRG from a Multiple Sequence Alignment file"
55
authors = ["Michael Hall <michael@mbh.sh>", "Leandro Ishi <leandro@ebi.ac.uk>", "Brice Letcher <bletcher@ebi.ac.uk>",
66
"Rachel Colquhoun <rachel.colquhoun@ed.ac.uk>"]

sample_example/run_make_prg_on_sample_example.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22
set -eu
33

44
# configs
5-
version="0.4.0"
5+
version="0.5.0"
66
make_prg="./make_prg_${version}"
7-
make_prg_URL="https://github.com/iqbal-lab-org/make_prg/releases/download/0.4.0/make_prg_0.4.0"
7+
make_prg_URL="https://github.com/iqbal-lab-org/make_prg/releases/download/${version}/make_prg_${version}"
88

99

1010
if [ ! -f ${make_prg} ]; then

scripts/build_precompiled_binary/build_precompiled_binary.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/usr/bin/env bash
22
set -eu
33

4-
version="0.4.0"
4+
version="0.5.0"
55

66
CURRENT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
77
SCRIPTS_DIR="$(dirname "${CURRENT_DIR}")"

0 commit comments

Comments
 (0)