Skip to content

Commit

Permalink
[release 0.21.3] Update timestamp and build numbers [ci skip]
Browse files Browse the repository at this point in the history
  • Loading branch information
pditommaso committed Aug 26, 2016
1 parent 9539431 commit c7a9b2f
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion build.gradle
Expand Up @@ -55,7 +55,7 @@ ext {
allprojects {
apply plugin: 'java'

version = '0.21.2'
version = '0.21.3'
group = 'io.nextflow'

sourceCompatibility = 1.7
Expand Down
2 changes: 1 addition & 1 deletion docs/conf.py
Expand Up @@ -50,7 +50,7 @@
# The short X.Y version.
version = '0.21'
# The full version, including alpha/beta/rc tags.
release = '0.21.2'
release = '0.21.3'

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
2 changes: 1 addition & 1 deletion nextflow
Expand Up @@ -138,7 +138,7 @@ if [ "$0" = "bash" ] || [ "$0" = "/bin/bash" ]; then
fi

NXF_HOME=${NXF_HOME:-$HOME/.nextflow}
NXF_VER=${NXF_VER:-'0.21.2'}
NXF_VER=${NXF_VER:-'0.21.3'}
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
Expand Up @@ -48,17 +48,17 @@ class Const {
/**
* The application version
*/
static public final String APP_VER = "0.21.2"
static public final String APP_VER = "0.21.3"

/**
* The app build time as linux/unix timestamp
*/
static public final long APP_TIMESTAMP = 1470995281921
static public final long APP_TIMESTAMP = 1472231255547

/**
* The app build number
*/
static public final int APP_BUILDNUM = 3985
static public final int APP_BUILDNUM = 3990

/**
* The date time formatter string
Expand Down

0 comments on commit c7a9b2f

Please sign in to comment.