Skip to content

Commit 8c99441

Browse files
committed
Update README, changelog, build and version numbers
1 parent 9fdeb5a commit 8c99441

File tree

8 files changed

+23
-11
lines changed

8 files changed

+23
-11
lines changed

README.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -208,8 +208,8 @@ The self-contained runnable Nextflow package can be created by using the followi
208208
Known compilation problems
209209
---------------------------
210210

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
213213
`JAVA_HOME` environment variable accordingly.
214214

215215

@@ -219,6 +219,7 @@ this is due to a bug affecting the following Java JDK:
219219
- 1.7.0 update 55
220220
- 1.7.0 update 65
221221
- 1.7.0 update 67
222+
- 1.7.0 update 71
222223
- 1.8.0 update 11
223224
- 1.8.0 update 20
224225

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
* along with Nextflow. If not, see <http://www.gnu.org/licenses/>.
1919
*/
2020

21-
version = '0.12.0'
21+
version = '0.12.1'
2222
apply plugin: 'groovy'
2323
apply plugin: 'idea'
2424

changelog.txt

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,16 @@
11
NEXTFLOW CHANGE-LOG
22
===================
33

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
514
- Added afterScript/beforeScript directives
615
- Added tag directive to label task executions with a custom identifier
716
- Added dynamic directives evaluation

docs/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@
5050
# The short X.Y version.
5151
version = '0.12'
5252
# The full version, including alpha/beta/rc tags.
53-
release = '0.12.0'
53+
release = '0.12.1'
5454

5555
# The language for content autogenerated by Sphinx. Refer to documentation
5656
# for a list of supported languages.

docs/sync-doc.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
#!/bin/bash
22
TARGET=../../nextflow-website/assets
33
LATEST=$TARGET/docs/latest/
4-
VERSION=$TARGET/docs/v0.12.0/
4+
VERSION=$TARGET/docs/v0.12.1/
55

66
mkdir -p $TARGET/docs/latest/
7-
mkdir -p $TARGET/docs/v0.12.0/
7+
mkdir -p $TARGET/docs/v0.12.1/
88

99
rsync -r _build/html/* $LATEST
1010
rsync -r _build/html/* $VERSION

launch.sh

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,8 @@ DEBUG=''
4747
COLUMNS=${COLUMNS:-`tput cols 2> /dev/tty`}
4848
MAIN_CLASS='nextflow.cli.Launcher'
4949
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"
5052
NXF_HOME=${NXF_HOME:-$HOME/.nextflow}
5153
EXTRAE_CONFIG_FILE=${EXTRAE_CONFIG_FILE:-$NXF_HOME/extrae/config}
5254
NXF_CLI="$0 $@"

nextflow

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ if [ "$0" = "bash" ] || [ "$0" = "/bin/bash" ]; then
102102
fi
103103

104104
NXF_HOME=${NXF_HOME:-$HOME/.nextflow}
105-
NXF_VER=${NXF_VER:-'0.12.0'}
105+
NXF_VER=${NXF_VER:-'0.12.1'}
106106
NXF_ORG=${NXF_ORG:-'nextflow-io'}
107107
NXF_ASSETS=${NXF_ASSETS:-$NXF_HOME/assets}
108108
NXF_CLI="$0 $@"

src/main/groovy/nextflow/Const.groovy

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -48,17 +48,17 @@ class Const {
4848
/**
4949
* The application version
5050
*/
51-
static final String APP_VER = "0.12.0"
51+
static final String APP_VER = "0.12.1"
5252

5353
/**
5454
* The app build time as linux/unix timestamp
5555
*/
56-
static final long APP_TIMESTAMP = 1420470437645
56+
static final long APP_TIMESTAMP = 1423420466067
5757

5858
/**
5959
* The app build number
6060
*/
61-
static final int APP_BUILDNUM = 2580
61+
static final int APP_BUILDNUM = 2670
6262

6363
/**
6464
* The date time formatter string

0 commit comments

Comments
 (0)