Skip to content

Commit b689156

Browse files
committed
Bump version to 3.4.1
1 parent 2ecb9ae commit b689156

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

docs/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535
# The short X.Y version
3636
version = u''
3737
# The full version, including alpha/beta/rc tags
38-
release = u'v3.4.0'
38+
release = u'v3.4.1'
3939

4040

4141
# -- General configuration ---------------------------------------------------

docs/installation.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -154,7 +154,7 @@ Select a suitable `version of KINC <https://github.com/SystemsGenetics/KINC/rele
154154
.. code:: bash
155155
156156
export ACE_VERSION=v3.2.0
157-
export KINC_VERSION=v3.4.0
157+
export KINC_VERSION=v3.4.1
158158
159159
Next, clone the KINC repository:
160160

@@ -249,11 +249,11 @@ Once you have obtained an interactive node, run the following commands from your
249249
git clone https://github.com/bentsherman/pbs-toolkit.git
250250
./pbs-toolkit/modules/install-ace.sh v3.2.0
251251
./pbs-toolkit/modules/install-statslib.sh
252-
./pbs-toolkit/modules/install-kinc.sh v3.4.0 v3.2.0
252+
./pbs-toolkit/modules/install-kinc.sh v3.4.1 v3.2.0
253253
254254
These scripts will install ACE and KINC into your home directory, establishing them as modules that can be run from anywhere. It will also update your environment so that the modules can be called when necessary. It uses a module called ``use.own``, which when added will make KINC and ACE available to be used interactively. You should now be able to load KINC as a module:
255255

256256
.. code:: bash
257257
258258
module add use.own
259-
module add KINC/v3.4.0
259+
module add KINC/v3.4.1

docs/usage.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ You can retrieve a list of all of the functions that KINC provides by executing
7878
7979
kinc help run
8080
81-
The following will be shown for KINC v3.4.0:
81+
The following will be shown for KINC v3.4.1:
8282

8383
.. code::
8484
@@ -518,7 +518,7 @@ To use KINC in an interactive Docker container execute the following:
518518
519519
.. code:: bash
520520
521-
nvidia-docker run --rm -it systemsgenetics/kinc:3.4.0 bash
521+
nvidia-docker run --rm -it systemsgenetics/kinc:3.4.1 bash
522522
523523
The command above will provide access to the terminal inside of the image where commands such as the following can be executed:
524524
@@ -531,7 +531,7 @@ You will need to share the input and output data between the Docker container an
531531
532532
.. code:: bash
533533
534-
nvidia-docker run --rm -it -v $PWD:/root systemsgenetics/kinc:3.4.0 bash
534+
nvidia-docker run --rm -it -v $PWD:/root systemsgenetics/kinc:3.4.1 bash
535535
> ls
536536
537537
Automating KINC with Nextflow

src/KINC.pri

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# Versions
33
KINC_MAJOR_VERSION = 3
44
KINC_MINOR_VERSION = 4
5-
KINC_REVISION = 0
5+
KINC_REVISION = 1
66

77
VERSION = $${KINC_MAJOR_VERSION}.$${KINC_MINOR_VERSION}.$${KINC_REVISION}
88

0 commit comments

Comments
 (0)