Skip to content

Commit

Permalink
[release 0.22.4] updated timestamp and build numbers
Browse files Browse the repository at this point in the history
  • Loading branch information
pditommaso committed Nov 4, 2016
1 parent 6763023 commit cdff7ef
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 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.22.3'
version = '0.22.4'
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.22'
# The full version, including alpha/beta/rc tags.
release = '0.22.3'
release = '0.22.4'

# 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
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ if [ "$0" = "bash" ] || [ "$0" = "/bin/bash" ]; then
fi

NXF_HOME=${NXF_HOME:-$HOME/.nextflow}
NXF_VER=${NXF_VER:-'0.22.3'}
NXF_VER=${NXF_VER:-'0.22.4'}
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 public final String APP_VER = "0.22.3"
static public final String APP_VER = "0.22.4"

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

/**
* The app build number
*/
static public final int APP_BUILDNUM = 4095
static public final int APP_BUILDNUM = 4101

/**
* The date time formatter string
Expand Down

0 comments on commit cdff7ef

Please sign in to comment.