Skip to content

Commit aac21be

Browse files
author
Rob Patro
committed
[release v1.11.4] fix libgff linking
1 parent 0626a81 commit aac21be

5 files changed

Lines changed: 7 additions & 7 deletions

File tree

current_version.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
VERSION_MAJOR 1
22
VERSION_MINOR 11
3-
VERSION_PATCH 0
3+
VERSION_PATCH 4

doc/source/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@
5757
# The short X.Y version.
5858
version = '1.11'
5959
# The full version, including alpha/beta/rc tags.
60-
release = '1.11.0'
60+
release = '1.11.4'
6161

6262
# The language for content autogenerated by Sphinx. Refer to documentation
6363
# for a list of supported languages.

docker/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ MAINTAINER salmon.maintainer@gmail.com
66

77
ENV PACKAGES git gcc make g++ libboost-all-dev liblzma-dev libbz2-dev \
88
ca-certificates zlib1g-dev libcurl4-openssl-dev curl unzip autoconf apt-transport-https ca-certificates gnupg software-properties-common wget
9-
ENV SALMON_VERSION 1.11.0
9+
ENV SALMON_VERSION 1.11.4
1010

1111
# salmon binary will be installed in /home/salmon/bin/salmon
1212

docker/build_test.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
#! /bin/bash
2-
SALMON_VERSION=1.11.0
2+
SALMON_VERSION=1.11.4
33
TMPDIR=/mnt/scratch7/DELETE_ME_TEMP docker build --no-cache -t combinelab/salmon:${SALMON_VERSION} -t combinelab/salmon:latest .

scripts/bump_version.sh

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

33
HERE="$( cd "$(dirname "$0")" ; pwd -P )"
44

5-
major_v=`${HERE}/../build/using-sshash/src/salmon -v | cut -d ' ' -f 2 | cut -d '.' -f 1`
6-
minor_v=`${HERE}/../build/using-sshash/src/salmon -v | cut -d ' ' -f 2 | cut -d '.' -f 2`
7-
patch_v=`${HERE}/../build/using-sshash/src/salmon -v | cut -d ' ' -f 2 | cut -d '.' -f 3`
5+
major_v=`${HERE}/../build/src/salmon -v | cut -d ' ' -f 2 | cut -d '.' -f 1`
6+
minor_v=`${HERE}/../build/src/salmon -v | cut -d ' ' -f 2 | cut -d '.' -f 2`
7+
patch_v=`${HERE}/../build/src/salmon -v | cut -d ' ' -f 2 | cut -d '.' -f 3`
88

99
echo "VERSION : ${major_v}.${minor_v}.${patch_v}"
1010

0 commit comments

Comments
 (0)