Skip to content

Commit

Permalink
Updated version number
Browse files Browse the repository at this point in the history
  • Loading branch information
pditommaso committed May 26, 2014
1 parent d56b420 commit d71e77e
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 7 deletions.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
*/

apply plugin: 'gradle-one-jar'
version = '0.8.0'
version = '0.8.1'

allprojects {
apply plugin: 'groovy'
Expand Down
6 changes: 5 additions & 1 deletion changelog.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
NEXTFLOW CHANGE-LOG
===================

0.8.1 - 26 May 2014
- Fixed a ConcurrentModificationException issue on splitXxx method due to a misused @Memoized annotation

0.8.0 - 24 May 2014
- Added support for Java 8
- Upgraded to Groovy 2.3.0
Expand All @@ -14,7 +17,8 @@ NEXTFLOW CHANGE-LOG
- Operator 'grep' has been removed and features included in 'filter' operator
- Deprecated 'chopXxx' operators
- Deprecated 'chunkXxx' operators
- Deprecated 'each' operator in favor or 'subscribe'
- Deprecated 'each' operator in favor of 'subscribe'
- Deprecated process 'merge' directive
- Executor service now uses a fixed thread pool
- Fixed issue on 'maxForks' process directive
- Added 'info' cli parameter
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.8'
# The full version, including alpha/beta/rc tags.
release = '0.8.0'
release = '0.8.1'

# 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 @@ -74,7 +74,7 @@ if [ "$0" = "bash" ] || [ "$0" = "/bin/bash" ]; then
fi

NXF_HOME=${NXF_HOME:-$HOME/.nextflow}
NXF_VER=${NXF_VER:-'0.8.0'}
NXF_VER=${NXF_VER:-'0.8.1'}

# Check if it is required to run in background
bg=''
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 @@ -53,17 +53,17 @@ class Const {
/**
* The application version
*/
static final String APP_VER = "0.8.0"
static final String APP_VER = "0.8.1"

/**
* The app build time as linux/unix timestamp
*/
static final long APP_TIMESTAMP = 1400889600000
static final long APP_TIMESTAMP = 1401138587510

/**
* The app build number
*/
static final int APP_BUILDNUM = 1825
static final int APP_BUILDNUM = 1827

/**
* The date time formatter string
Expand Down

0 comments on commit d71e77e

Please sign in to comment.