From 0bc1d615a290d54f09c48804fbe3ba6b904b09e3 Mon Sep 17 00:00:00 2001 From: Hasindu Gamaarachchi Date: Mon, 30 Sep 2024 21:14:32 +1000 Subject: [PATCH] update version to 1.3 --- README.md | 4 ++-- docs/getting_started.md | 4 ++-- src/cmd.h | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 24d110c..43e453c 100644 --- a/README.md +++ b/README.md @@ -22,7 +22,7 @@ To convert to and from ONT's new POD5 format, you use [blue_crab](https://github If you are a Linux user on x86_64 architecture and want to quickly try slow5tools out, download the compiled binaries from the [latest release](https://github.com/hasindu2008/slow5tools/releases). For example: ```sh -VERSION=v1.2.0 +VERSION=v1.3.0 wget "https://github.com/hasindu2008/slow5tools/releases/download/$VERSION/slow5tools-$VERSION-x86_64-linux-binaries.tar.gz" && tar xvf slow5tools-$VERSION-x86_64-linux-binaries.tar.gz && cd slow5tools-$VERSION/ ./slow5tools ``` @@ -55,7 +55,7 @@ Quick example for Ubuntu : ```sh sudo apt-get install libhdf5-dev zlib1g-dev #install HDF5 and zlib development libraries -VERSION=v1.2.0 +VERSION=v1.3.0 wget "https://github.com/hasindu2008/slow5tools/releases/download/$VERSION/slow5tools-$VERSION-release.tar.gz" && tar xvf slow5tools-$VERSION-release.tar.gz && cd slow5tools-$VERSION/ ./configure make diff --git a/docs/getting_started.md b/docs/getting_started.md index 50bd4b8..d1f3c2e 100644 --- a/docs/getting_started.md +++ b/docs/getting_started.md @@ -18,7 +18,7 @@ To convert to and from ONT's new POD5 format, you use [blue_crab](https://github If you are a Linux user on x86_64 architecture and want to quickly try slow5tools out, download the compiled binaries from the [latest release](https://github.com/hasindu2008/slow5tools/releases). For example: ```sh -VERSION=v1.2.0 +VERSION=v1.3.0 wget "https://github.com/hasindu2008/slow5tools/releases/download/$VERSION/slow5tools-$VERSION-x86_64-linux-binaries.tar.gz" && tar xvf slow5tools-$VERSION-x86_64-linux-binaries.tar.gz && cd slow5tools-$VERSION/ ./slow5tools ``` @@ -51,7 +51,7 @@ Quick example for Ubuntu: ```sh sudo apt-get install libhdf5-dev zlib1g-dev #install HDF5 and zlib development libraries -VERSION=v1.2.0 +VERSION=v1.3.0 wget "https://github.com/hasindu2008/slow5tools/releases/download/$VERSION/slow5tools-$VERSION-release.tar.gz" && tar xvf slow5tools-$VERSION-release.tar.gz && cd slow5tools-$VERSION/ ./configure make diff --git a/src/cmd.h b/src/cmd.h index 1468143..bb2444b 100644 --- a/src/cmd.h +++ b/src/cmd.h @@ -1,7 +1,7 @@ #ifndef CMD_H #define CMD_H -#define SLOW5TOOLS_VERSION "1.2.0-dirty" +#define SLOW5TOOLS_VERSION "1.3.0" #define DEFAULT_NUM_THREADS 8 #define DEFAULT_NUM_PROCESSES 8