File tree Expand file tree Collapse file tree 8 files changed +23
-11
lines changed Expand file tree Collapse file tree 8 files changed +23
-11
lines changed Original file line number Diff line number Diff line change @@ -208,8 +208,8 @@ The self-contained runnable Nextflow package can be created by using the followi
208
208
Known compilation problems
209
209
---------------------------
210
210
211
- Nextflow can be compiled both the JDK 7 or JDK 8. However when compiling with the later you ** won't** be able
212
- to run it on a Java 7. The specify the compiler to be used by Gradle build set the
211
+ Nextflow can be compiled with both JDK 7 or JDK 8. However when compiling with the later you ** won't** be able
212
+ to run it on a Java 7. The Java compiler used by the build process can be choose by setting the
213
213
` JAVA_HOME ` environment variable accordingly.
214
214
215
215
@@ -219,6 +219,7 @@ this is due to a bug affecting the following Java JDK:
219
219
- 1.7.0 update 55
220
220
- 1.7.0 update 65
221
221
- 1.7.0 update 67
222
+ - 1.7.0 update 71
222
223
- 1.8.0 update 11
223
224
- 1.8.0 update 20
224
225
Original file line number Diff line number Diff line change 18
18
* along with Nextflow. If not, see <http://www.gnu.org/licenses/>.
19
19
*/
20
20
21
- version = ' 0.12.0 '
21
+ version = ' 0.12.1 '
22
22
apply plugin : ' groovy'
23
23
apply plugin : ' idea'
24
24
Original file line number Diff line number Diff line change 1
1
NEXTFLOW CHANGE-LOG
2
2
===================
3
3
4
- 0.12.0 - 5 Gen 2014
4
+ 0.12.1 - 8 Feb 2014
5
+ - Fixed NoSuchMethodException issue on Java 1.7.0_01 due to missing private constructor
6
+ - Fixed logging issue on Nextflow console
7
+ - Fixed issue `view` operator which hung when used on a dataflow variable
8
+ - Upgrade SLF4J to version 1.7.10
9
+ - Upgrade Capsule to version 0.10.0
10
+ - Removed dependency on jsr166y module
11
+ - Removed `synchronized` declaration on Session cleanUp method
12
+
13
+ 0.12.0 - 5 Jan 2014
5
14
- Added afterScript/beforeScript directives
6
15
- Added tag directive to label task executions with a custom identifier
7
16
- Added dynamic directives evaluation
Original file line number Diff line number Diff line change 50
50
# The short X.Y version.
51
51
version = '0.12'
52
52
# The full version, including alpha/beta/rc tags.
53
- release = '0.12.0 '
53
+ release = '0.12.1 '
54
54
55
55
# The language for content autogenerated by Sphinx. Refer to documentation
56
56
# for a list of supported languages.
Original file line number Diff line number Diff line change 1
1
#! /bin/bash
2
2
TARGET=../../nextflow-website/assets
3
3
LATEST=$TARGET /docs/latest/
4
- VERSION=$TARGET /docs/v0.12.0 /
4
+ VERSION=$TARGET /docs/v0.12.1 /
5
5
6
6
mkdir -p $TARGET /docs/latest/
7
- mkdir -p $TARGET /docs/v0.12.0 /
7
+ mkdir -p $TARGET /docs/v0.12.1 /
8
8
9
9
rsync -r _build/html/* $LATEST
10
10
rsync -r _build/html/* $VERSION
Original file line number Diff line number Diff line change @@ -47,6 +47,8 @@ DEBUG=''
47
47
COLUMNS=${COLUMNS:- `tput cols 2> / dev/ tty`}
48
48
MAIN_CLASS=' nextflow.cli.Launcher'
49
49
JVM_ARGS+=" -Djava.awt.headless=true -noverify -XX:+TieredCompilation -XX:TieredStopAtLevel=1"
50
+ # # flight recorded -- http://docs.oracle.com/javacomponents/jmc-5-4/jfr-runtime-guide/run.htm
51
+ # #JVM_ARGS+=" -XX:+UnlockCommercialFeatures -XX:+FlightRecorder -XX:StartFlightRecording=duration=60s,filename=myrecording.jfr"
50
52
NXF_HOME=${NXF_HOME:- $HOME / .nextflow}
51
53
EXTRAE_CONFIG_FILE=${EXTRAE_CONFIG_FILE:- $NXF_HOME / extrae/ config}
52
54
NXF_CLI=" $0 $@ "
Original file line number Diff line number Diff line change @@ -102,7 +102,7 @@ if [ "$0" = "bash" ] || [ "$0" = "/bin/bash" ]; then
102
102
fi
103
103
104
104
NXF_HOME=${NXF_HOME:- $HOME / .nextflow}
105
- NXF_VER=${NXF_VER:- ' 0.12.0 ' }
105
+ NXF_VER=${NXF_VER:- ' 0.12.1 ' }
106
106
NXF_ORG=${NXF_ORG:- ' nextflow-io' }
107
107
NXF_ASSETS=${NXF_ASSETS:- $NXF_HOME / assets}
108
108
NXF_CLI=" $0 $@ "
Original file line number Diff line number Diff line change @@ -48,17 +48,17 @@ class Const {
48
48
/**
49
49
* The application version
50
50
*/
51
- static final String APP_VER = " 0.12.0 "
51
+ static final String APP_VER = " 0.12.1 "
52
52
53
53
/**
54
54
* The app build time as linux/unix timestamp
55
55
*/
56
- static final long APP_TIMESTAMP = 1420470437645
56
+ static final long APP_TIMESTAMP = 1423420466067
57
57
58
58
/**
59
59
* The app build number
60
60
*/
61
- static final int APP_BUILDNUM = 2580
61
+ static final int APP_BUILDNUM = 2670
62
62
63
63
/**
64
64
* The date time formatter string
You can’t perform that action at this time.
0 commit comments