Skip to content

Commit

Permalink
[release 0.15.1] Updated timestamp and build numbers
Browse files Browse the repository at this point in the history
  • Loading branch information
pditommaso committed Aug 4, 2015
1 parent 1a37d9f commit a3a806b
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ ext {
allprojects {
apply plugin: 'java'

version = '0.15.0'
version = '0.15.1'
group = 'io.nextflow'

sourceCompatibility = 1.7
Expand Down
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@
# The short X.Y version.
version = '0.15'
# The full version, including alpha/beta/rc tags.
release = '0.15.0'
release = '0.15.1'

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
4 changes: 2 additions & 2 deletions docs/sync-doc.sh
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
#!/bin/bash
TARGET=../../nextflow-website/assets
LATEST=$TARGET/docs/latest/
VERSION=$TARGET/docs/v0.15.0/
VERSION=$TARGET/docs/v0.15.1/

mkdir -p $TARGET/docs/latest/
mkdir -p $TARGET/docs/v0.15.0/
mkdir -p $TARGET/docs/v0.15.1/

rsync -r _build/html/* $LATEST
rsync -r _build/html/* $VERSION
Expand Down
2 changes: 1 addition & 1 deletion nextflow
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ if [ "$0" = "bash" ] || [ "$0" = "/bin/bash" ]; then
fi

NXF_HOME=${NXF_HOME:-$HOME/.nextflow}
NXF_VER=${NXF_VER:-'0.15.0'}
NXF_VER=${NXF_VER:-'0.15.1'}
NXF_ORG=${NXF_ORG:-'nextflow-io'}
NXF_ASSETS=${NXF_ASSETS:-$NXF_HOME/assets}
NXF_CLI="$0 $@"
Expand Down
6 changes: 3 additions & 3 deletions src/main/groovy/nextflow/Const.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -48,17 +48,17 @@ class Const {
/**
* The application version
*/
static final String APP_VER = "0.15.0"
static final String APP_VER = "0.15.1"

/**
* The app build time as linux/unix timestamp
*/
static final long APP_TIMESTAMP = 1437984023595
static final long APP_TIMESTAMP = 1438698908917

/**
* The app build number
*/
static final int APP_BUILDNUM = 3020
static final int APP_BUILDNUM = 3024

/**
* The date time formatter string
Expand Down

0 comments on commit a3a806b

Please sign in to comment.