Skip to content

Commit

Permalink
bump version to v1.2.2
Browse files Browse the repository at this point in the history
  • Loading branch information
oschwengers committed Nov 20, 2019
1 parent b3bcd54 commit 6e34cd5
Show file tree
Hide file tree
Showing 6 changed files with 14 additions and 9 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
# v1.2.2
## Enhancements
- Improved the `-c/--check` logic and error messages
- Replaced the configuration example by a more versatile one

# v1.2.1
## Enhancements
- Fixed a "permission denied error" in the Docker container
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ analysed as a single project, we distribute ASA³P in two versions:

For both the following files are necessary:
- ASA³P tarball (asap.tar.gz) containing binaries, 3rd party executables and databases:
https://s3.computational.bio.uni-giessen.de/swift/v1/asap/v1.2.1/asap.tar.gz (md5 sum: 55366b9bdb7cf7c165e72b1ccb7670b8)
https://s3.computational.bio.uni-giessen.de/swift/v1/asap/v1.2.2/asap.tar.gz (md5 sum: deb0ac8eede0ef03028c10e53402a145)
- configuration template: https://s3.computational.bio.uni-giessen.de/swift/v1/asap/config.xls

Note:
Expand All @@ -88,7 +88,7 @@ official instructions (https://docs.docker.com/install) to install Docker.
Setup:
```bash
$ sudo docker pull oschwengers/asap
$ wget https://s3.computational.bio.uni-giessen.de/swift/v1/asap/v1.2.1/asap.tar.gz
$ wget https://s3.computational.bio.uni-giessen.de/swift/v1/asap/v1.2.2/asap.tar.gz
$ tar -xzf asap.tar.gz
$ rm asap.tar.gz
```
Expand Down Expand Up @@ -119,7 +119,7 @@ be executed as sudo. This is pure technical necessity unrelated to ASA³P itself
**Complete example**:
```bash
$ sudo docker pull oschwengers/asap
$ wget https://s3.computational.bio.uni-giessen.de/swift/v1/asap/v1.2.1/asap.tar.gz
$ wget https://s3.computational.bio.uni-giessen.de/swift/v1/asap/v1.2.2/asap.tar.gz
$ tar -xzf asap.tar.gz
$ rm asap.tar.gz
$ wget https://s3.computational.bio.uni-giessen.de/swift/v1/asap/example-lmonocytogenes-4.tar.gz
Expand Down
2 changes: 1 addition & 1 deletion api/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

<groupId>bio.comp.jlu.asap</groupId>
<artifactId>asap-api</artifactId>
<version>1.2.0</version>
<version>1.2.2</version>
<packaging>jar</packaging>
<name>ASAP - API</name>

Expand Down
4 changes: 2 additions & 2 deletions core/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

<groupId>bio.comp.jlu.asap</groupId>
<artifactId>asap</artifactId>
<version>1.2.1</version>
<version>1.2.2</version>
<packaging>jar</packaging>
<name>ASAP</name>

Expand Down Expand Up @@ -45,7 +45,7 @@
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>asap-api</artifactId>
<version>1.2.0</version>
<version>1.2.2</version>
</dependency>
<dependency>
<groupId>net.sourceforge.jexcelapi</groupId>
Expand Down
2 changes: 1 addition & 1 deletion core/src/main/java/bio/comp/jlu/asap/ASAPConstants.java
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,6 @@ public final class ASAPConstants {
public final static int MAX_STEP_WAITING_PERIOD = 24*60*60*1000;
public final static int EXP_BACKOFF_EXP = 10;

public final static String ASAP_VERSION = "1.2.1";
public final static String ASAP_VERSION = "1.2.2";

}
4 changes: 2 additions & 2 deletions docker/asap-docker.sh
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,7 @@ if [ "$SCRATCH" != "" ]; then
--volume="$SCRATCH:/var/scratch" \
--volume="/etc/group:/etc/group:ro" \
--volume="/etc/passwd:/etc/passwd:ro" \
oschwengers/asap:v1.2.1 \
oschwengers/asap:v1.2.2 \
$SKIP_CHAR $SKIP_COMP $DEBUG

else
Expand All @@ -175,7 +175,7 @@ else
--volume="$DATA:/data" \
--volume="/etc/group:/etc/group:ro" \
--volume="/etc/passwd:/etc/passwd:ro" \
oschwengers/asap:v1.2.1 \
oschwengers/asap:v1.2.2 \
$SKIP_CHAR $SKIP_COMP $DEBUG
fi

Expand Down

0 comments on commit 6e34cd5

Please sign in to comment.