From 595ecb79e356343b89f61a415a752a895685e277 Mon Sep 17 00:00:00 2001 From: Rob Patro Date: Wed, 22 Jun 2022 11:58:19 -0400 Subject: [PATCH] [SKIP CI]: bump version --- current_version.txt | 2 +- doc/source/conf.py | 4 ++-- docker/Dockerfile | 2 +- docker/build_test.sh | 2 +- include/SalmonConfig.hpp | 4 ++-- 5 files changed, 7 insertions(+), 7 deletions(-) diff --git a/current_version.txt b/current_version.txt index fb9ede991..40f96c219 100644 --- a/current_version.txt +++ b/current_version.txt @@ -1,3 +1,3 @@ VERSION_MAJOR 1 -VERSION_MINOR 8 +VERSION_MINOR 9 VERSION_PATCH 0 diff --git a/doc/source/conf.py b/doc/source/conf.py index 580f48e4d..ebc201b0f 100644 --- a/doc/source/conf.py +++ b/doc/source/conf.py @@ -55,9 +55,9 @@ # built documents. # # The short X.Y version. -version = '1.8' +version = '1.9' # The full version, including alpha/beta/rc tags. -release = '1.8.0' +release = '1.9.0' # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/docker/Dockerfile b/docker/Dockerfile index 61f3ffcf2..70009a298 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -6,7 +6,7 @@ MAINTAINER salmon.maintainer@gmail.com ENV PACKAGES git gcc make g++ libboost-all-dev liblzma-dev libbz2-dev \ ca-certificates zlib1g-dev libcurl4-openssl-dev curl unzip autoconf apt-transport-https ca-certificates gnupg software-properties-common wget -ENV SALMON_VERSION 1.8.0 +ENV SALMON_VERSION 1.9.0 # salmon binary will be installed in /home/salmon/bin/salmon diff --git a/docker/build_test.sh b/docker/build_test.sh index 45976506b..02ce42f6e 100644 --- a/docker/build_test.sh +++ b/docker/build_test.sh @@ -1,3 +1,3 @@ #! /bin/bash -SALMON_VERSION=1.8.0 +SALMON_VERSION=1.9.0 docker build --no-cache -t combinelab/salmon:${SALMON_VERSION} -t combinelab/salmon:latest . diff --git a/include/SalmonConfig.hpp b/include/SalmonConfig.hpp index 277485959..8d126a197 100644 --- a/include/SalmonConfig.hpp +++ b/include/SalmonConfig.hpp @@ -26,9 +26,9 @@ namespace salmon { constexpr char majorVersion[] = "1"; -constexpr char minorVersion[] = "8"; +constexpr char minorVersion[] = "9"; constexpr char patchVersion[] = "0"; -constexpr char version[] = "1.8.0"; +constexpr char version[] = "1.9.0"; constexpr uint32_t indexVersion = 5; constexpr char requiredQuasiIndexVersion[] = "p7"; } // namespace salmon